VideoCollectionCell.h 1.2 KB

123456789101112131415161718192021222324252627
  1. //
  2. // VideoCollectionCell.h
  3. // YBVideo
  4. //
  5. // Created by YangBiao on 2017/9/5.
  6. // Copyright © 2017年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NearbyVideoModel.h"
  10. @interface VideoCollectionCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *bgImageV;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  13. @property (weak, nonatomic) IBOutlet UIImageView *userAvatar;
  14. @property (weak, nonatomic) IBOutlet UILabel *usernameLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *distanceLabel;
  16. @property (weak, nonatomic) IBOutlet UIImageView *distanceImage;
  17. @property (weak, nonatomic) IBOutlet UIView *bottomView;
  18. @property (weak, nonatomic) IBOutlet UIImageView *videoImgType;
  19. @property (weak, nonatomic) IBOutlet UIButton *videoCoinBtn;
  20. @property (nonatomic,strong) NearbyVideoModel *model;
  21. @property (nonatomic,copy) NSString *isAtten; //是不是关注页面使用,如果是的话原来的定位图标、label显示时间
  22. @property (nonatomic,copy) NSString *isList; //是不是首页视频列表,如果是的话定位图标、label显示评论数,右上角添加定位view
  23. @property(nonatomic,assign)BOOL isTakeSameList; //拍同款列表
  24. @end