YOUPAILZChatRoomApplySeatButton.h 899 B

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