You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
621 B
29 lines
621 B
1 year ago
|
//
|
||
|
// ACVideoAlertView.h
|
||
|
// AnyChatFeatures
|
||
|
//
|
||
|
// Created by Bairui on 2019/6/14.
|
||
|
// Copyright © 2019年 GuangZhou BaiRui NetWork Technology Co.,Ltd. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "LEOAlertView.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
typedef void(^ACVideoAlertViewClick)(NSInteger index);
|
||
|
|
||
|
|
||
|
@interface ACVideoAlertView : LEOAlertView
|
||
|
|
||
|
|
||
|
@property (nonatomic, copy) ACVideoAlertViewClick clickBlock;
|
||
|
- (void)changeTitle:(NSString *)title;
|
||
|
|
||
|
|
||
|
+ (ACVideoAlertView *)showAlertViewByTitle:(NSString *)title
|
||
|
clickBlock:(ACVideoAlertViewClick) clickBlock;
|
||
|
+ (void)dismiss;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|