MOReportTableViewCell.h 458 B

123456789101112131415161718192021222324
  1. //
  2. // MOReportTableViewCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/1/16.
  6. //
  7. #define MOReportTableViewCell_ID @"MOReportTableViewCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOReportTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLab;
  12. @property (weak, nonatomic) IBOutlet UIImageView *selectImg;
  13. @property (nonatomic, assign) BOOL isSelect;
  14. @end
  15. NS_ASSUME_NONNULL_END