| 123456789101112131415161718192021222324252627282930 |
- //
- // MOSelectMemberListCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/11/20.
- //
- #define MOSelectMemberListCell_ID @"MOSelectMemberListCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOPersonModels.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOSelectMemberListCell : UITableViewCell
- @property (nonatomic, strong) UIView *bgView;
- /** */
- @property (nonatomic, strong) UIImageView *headImg;
- /** */
- @property (nonatomic, strong) UILabel *nameLab;
- /** */
- @property (nonatomic, strong) UIImageView *genderImg;
- @property (nonatomic, strong) MOPersonList *model;
- @property (nonatomic, strong) BigBtn *selectBtn;
- @end
- NS_ASSUME_NONNULL_END
|