Files
featherVoice/QXLive/Tabbar/弹窗/QXCustomAlertView.h
2025-10-20 09:43:10 +08:00

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