VideoCollectionViewCell.h 480 B

12345678910111213141516
  1. //
  2. // VideoCollectionViewCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/5/2.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HMHotModel.h"
  10. @interface VideoCollectionViewCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *videoImageView;
  12. @property (weak, nonatomic) IBOutlet UIView *backView;
  13. @property (weak, nonatomic) IBOutlet UILabel *placeLabel;
  14. @property (nonatomic, strong) HMHotItemModel * model;
  15. @end