| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // MOInviteTableViewCell.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/8.
- //
- #define MOInviteTableViewCell_ID @"MOInviteTableViewCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #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
|