1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAILZChatRoomInviationUpSeatCell.h
- // VQU
- //
- // Created by CY on 2021/11/5.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZChatRoomMemberModel.h"
- typedef NS_ENUM(NSUInteger,LZChatRoomInviationUpSeatCellButtonType) {
- LZChatRoomInviationUpSeatCellButtonTypeWithInviation = 0, // 邀上麦
- LZChatRoomInviationUpSeatCellButtonTypeWithFollow = 1, // 关注
- };
- typedef NS_ENUM(NSUInteger,LZChatRoomInviationUpSeatCellRankType) {
- LZChatRoomInviationUpSeatCellRankTypeWithDefault = 0, // 默认
- LZChatRoomInviationUpSeatCellRankTypeWithTopThree = 1, // 前三是图片
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZChatRoomInviationUpSeatCell : UITableViewCell
- @property (nonatomic,copy) void (^youpaipinviationBtnClickBlock)(YOUPAILZChatRoomMemberModel *model);
- - (void)youpaifreloadWithModel:(YOUPAILZChatRoomMemberModel *)model index:(NSInteger)index buttonType:(LZChatRoomInviationUpSeatCellButtonType)buttonType rankType:(LZChatRoomInviationUpSeatCellRankType)rankType contributionName:(NSString *)contributionName;
- @end
- NS_ASSUME_NONNULL_END
|