MOInviteTableViewCell.h 964 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MOInviteTableViewCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/8.
  6. //
  7. #define MOInviteTableViewCell_ID @"MOInviteTableViewCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOPkDataModels.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOInviteTableViewCell : UITableViewCell
  12. /** 背景动画 */
  13. @property (nonatomic, strong) MOHeadCustomView *headBgView;
  14. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  15. @property (weak, nonatomic) IBOutlet UIButton *inviteBtn;
  16. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  17. @property (weak, nonatomic) IBOutlet UILabel *idLab;
  18. @property (nonatomic, strong) MOStarNumView *startView;
  19. @property (nonatomic, assign) BOOL camera;
  20. @property (nonatomic, copy) NSString *roomId;
  21. @property (nonatomic, strong) MOPkUserList *cellModel;
  22. @property (nonatomic, strong) NSArray *inviteArr;
  23. @property (nonatomic, copy) void (^inviteActionBlock)(MOPkUserList *cellModel);
  24. @end
  25. NS_ASSUME_NONNULL_END