YOUPAILZChatRoomInviationUpSeatCell.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAILZChatRoomInviationUpSeatCell.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/11/5.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZChatRoomMemberModel.h"
  10. typedef NS_ENUM(NSUInteger,LZChatRoomInviationUpSeatCellButtonType) {
  11. LZChatRoomInviationUpSeatCellButtonTypeWithInviation = 0, // 邀上麦
  12. LZChatRoomInviationUpSeatCellButtonTypeWithFollow = 1, // 关注
  13. };
  14. typedef NS_ENUM(NSUInteger,LZChatRoomInviationUpSeatCellRankType) {
  15. LZChatRoomInviationUpSeatCellRankTypeWithDefault = 0, // 默认
  16. LZChatRoomInviationUpSeatCellRankTypeWithTopThree = 1, // 前三是图片
  17. };
  18. NS_ASSUME_NONNULL_BEGIN
  19. @interface YOUPAILZChatRoomInviationUpSeatCell : UITableViewCell
  20. @property (nonatomic,copy) void (^youpaipinviationBtnClickBlock)(YOUPAILZChatRoomMemberModel *model);
  21. - (void)youpaifreloadWithModel:(YOUPAILZChatRoomMemberModel *)model index:(NSInteger)index buttonType:(LZChatRoomInviationUpSeatCellButtonType)buttonType rankType:(LZChatRoomInviationUpSeatCellRankType)rankType contributionName:(NSString *)contributionName;
  22. @end
  23. NS_ASSUME_NONNULL_END