MOSelectMemberListCell.h 651 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOSelectMemberListCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/11/20.
  6. //
  7. #define MOSelectMemberListCell_ID @"MOSelectMemberListCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOPersonModels.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOSelectMemberListCell : UITableViewCell
  12. @property (nonatomic, strong) UIView *bgView;
  13. /** */
  14. @property (nonatomic, strong) UIImageView *headImg;
  15. /** */
  16. @property (nonatomic, strong) UILabel *nameLab;
  17. /** */
  18. @property (nonatomic, strong) UIImageView *genderImg;
  19. @property (nonatomic, strong) MOPersonList *model;
  20. @property (nonatomic, strong) BigBtn *selectBtn;
  21. @end
  22. NS_ASSUME_NONNULL_END