| 123456789101112131415161718192021222324 |
- //
- // MOReportTableViewCell.h
- // MiMoLive
- //
- // Created by SuperC on 2024/1/16.
- //
- #define MOReportTableViewCell_ID @"MOReportTableViewCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOReportTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @property (weak, nonatomic) IBOutlet UIImageView *selectImg;
- @property (nonatomic, assign) BOOL isSelect;
- @end
- NS_ASSUME_NONNULL_END
|