TimingCommonCell.h 620 B

1234567891011121314151617181920212223
  1. //
  2. // TimingCommonCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2020/5/8.
  6. // Copyright © 2020 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RQCollectionSectionModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TimingCommonCell : UICollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIView *cusContentView;
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  16. @property (strong, readwrite, nonatomic) RQCollectionItemModel *collectionItemModel;
  17. @end
  18. NS_ASSUME_NONNULL_END