24 lines
555 B
Objective-C
24 lines
555 B
Objective-C
|
|
|
|
// Created by lee on 2019/5/20.
|
|
// Copyright © 2023 YUMI. All rights reserved.
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TTPopupConstants.h"
|
|
|
|
@class TTAlertConfig;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TTAlertView : UIView
|
|
@property (nonatomic, strong) TTAlertConfig *config;
|
|
@property (nonatomic, assign) BOOL isConfigBoard;
|
|
@property (nonatomic, copy) TTPopupCompletionHandler cancelAction;
|
|
@property (nonatomic, copy) TTPopupCompletionHandler confirmAction;
|
|
@property (nonatomic, copy) TTPopupCompletionHandler dismissAction;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|