21 lines
310 B
Plaintext
21 lines
310 B
Plaintext
//
|
|
// TTNewAlertView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/1/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface TTNewAlertView : UIView
|
|
@property (nonatomic,copy) NSString *message;
|
|
@property (nonatomic, copy) TTPopupCompletionHandler confirmHandle;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|