19 lines
456 B
Objective-C
19 lines
456 B
Objective-C
//
|
|
// QXCustomAlertView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/10/10.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXCustomAlertView : UIView
|
|
@property (nonatomic,copy)void(^commitBlock)(void);
|
|
@property (nonatomic,copy)void(^cancelBlock)(void);
|
|
-(void)showInView:(UIView *)view title:(NSString*)title message:(NSString*)message cancleTitle:(NSString*)cancleTitle commitTitle:(NSString*)commitTitle;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|