| 123456789101112131415161718192021222324 |
- //
- // PlayBackCell.h
- // BuguLive
- //
- // Created by 范东 on 2019/1/14.
- // Copyright © 2019 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayBackCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imageView;
- @property (weak, nonatomic) IBOutlet UILabel *watchCountLabel;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (nonatomic, strong) HMHotItemModel *model;
- @end
- NS_ASSUME_NONNULL_END
|