PlayBackCell.h 604 B

123456789101112131415161718192021222324
  1. //
  2. // PlayBackCell.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/14.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PlayBackCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *watchCountLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  16. @property (nonatomic, strong) HMHotItemModel *model;
  17. @end
  18. NS_ASSUME_NONNULL_END