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