123456789101112131415161718192021222324252627282930313233 |
- //
- // YOUPAILZChatRoomApplySeatButton.h
- // VQU
- //
- // Created by CY on 2021/11/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSUInteger,LZChatRoomApplySeatType) {
- LZChatRoomApplySeatTypeWithUpSeat = 0,// 我要上麦
- LZChatRoomApplySeatTypeWithInline, // 排麦中
- LZChatRoomApplySeatTypeWithApplyList // 申请列表
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZChatRoomApplySeatButton : UIButton
- @property (nonatomic, assign)NSInteger youpaipmemberCount;// 排队数
- @property (nonatomic, assign) LZChatRoomApplySeatType youpaiptype;
- /// playType 玩法类型 0、默认玩法,1、心动值玩法,2、相亲玩法
- - (instancetype)initWithType:(LZChatRoomApplySeatType)type playType:(NSInteger)playType;
- - (void)youpaifrleoadWithType:(LZChatRoomApplySeatType)type playType:(NSInteger)playType;
- @end
- NS_ASSUME_NONNULL_END
|