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.
28 lines
621 B
28 lines
621 B
// |
|
// 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
|
|
|