MOChooseTimeCell.h 477 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOChooseTimeCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/12/13.
  6. //
  7. #define MOChooseTimeCell_ID @"MOChooseTimeCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOChooseTimeCell : UICollectionViewCell
  11. @property (nonatomic, strong) UIView *bgView;
  12. @property (nonatomic, strong) UIImageView *selectImg;
  13. @property (nonatomic, strong) UILabel *titleLab;
  14. @property (nonatomic, assign) BOOL isChoose;
  15. @end
  16. NS_ASSUME_NONNULL_END