| 12345678910111213141516 |
- //
- // VideoCollectionViewCell.h
- // BuguLive
- //
- // Created by 王珂 on 17/5/2.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HMHotModel.h"
- @interface VideoCollectionViewCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *videoImageView;
- @property (weak, nonatomic) IBOutlet UIView *backView;
- @property (weak, nonatomic) IBOutlet UILabel *placeLabel;
- @property (nonatomic, strong) HMHotItemModel * model;
- @end
|