SmallVideoCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // SmallVideoCell.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/17.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SmallVideoListModel;
  10. @interface SmallVideoCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *bigImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet UIImageView *headImg;
  14. @property (weak, nonatomic) IBOutlet UIImageView *smallImgView;
  15. @property (weak, nonatomic) IBOutlet UIView *bottomView;
  16. @property (weak, nonatomic) IBOutlet UILabel *numLbale;
  17. @property (weak, nonatomic) IBOutlet UIImageView *videoImgView;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomViewConstraintW;
  19. @property (weak, nonatomic) IBOutlet UIView *isCheckView;
  20. @property (weak, nonatomic) IBOutlet QMUIButton *nickNameBtn;
  21. @property (weak, nonatomic) IBOutlet QMUIButton *watchNum;
  22. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  23. - (void)creatCellWithModel:(SmallVideoListModel *)model andRow:(int)row;
  24. @end