// // MOInviteTableViewCell.h // MiMoLive // // Created by SuperC on 2024/8/8. // #define MOInviteTableViewCell_ID @"MOInviteTableViewCell_ID" //复用id #import #import "MOPkDataModels.h" NS_ASSUME_NONNULL_BEGIN @interface MOInviteTableViewCell : UITableViewCell /** 背景动画 */ @property (nonatomic, strong) MOHeadCustomView *headBgView; @property (weak, nonatomic) IBOutlet UIImageView *headImgView; @property (weak, nonatomic) IBOutlet UIButton *inviteBtn; @property (weak, nonatomic) IBOutlet UILabel *nameLab; @property (weak, nonatomic) IBOutlet UILabel *idLab; @property (nonatomic, strong) MOStarNumView *startView; @property (nonatomic, assign) BOOL camera; @property (nonatomic, copy) NSString *roomId; @property (nonatomic, strong) MOPkUserList *cellModel; @property (nonatomic, strong) NSArray *inviteArr; @property (nonatomic, copy) void (^inviteActionBlock)(MOPkUserList *cellModel); @end NS_ASSUME_NONNULL_END