// // QXSeductionAlertView.h // QXLive // // Created by 启星 on 2026/1/5. // #import typedef NS_ENUM(NSInteger) { /// 撩他 QXSeductionAlertTypeSeduction = 0, /// 小黑屋送礼物 QXSeductionAlertTypeSendGift = 1, }QXSeductionAlertType; NS_ASSUME_NONNULL_BEGIN @interface QXSeductionAlertView : UIView @property (nonatomic,copy)void(^commitBlock)(BOOL isNoAlert); @property (nonatomic,copy)void(^cancelBlock)(void); @property (nonatomic,strong)QXRoomPitModel *pitModel; @property (nonatomic,strong)QXGiftModel *giftModel; @property (nonatomic,strong)NSString *sexy_coin; @property (nonatomic,strong)NSString *roomId; @property (nonatomic,assign)QXSeductionAlertType alertType; -(void)showInView:(UIView *)view; -(void)hide; @end NS_ASSUME_NONNULL_END