HomeWeiCousreCell.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // HomeWeiCousreCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/16.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. #import "BookChanelRightModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface HomeWeiCousreCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  13. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  14. @property (weak, nonatomic) IBOutlet UIImageView *imgV;
  15. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  16. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  17. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  18. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  19. @property (weak, nonatomic) IBOutlet UIImageView *yunV;
  20. @property (weak, nonatomic) IBOutlet UILabel *numL;
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *nameContant;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *timeContant;
  23. @property (weak, nonatomic) IBOutlet UIView *lineV;
  24. @property (weak, nonatomic) IBOutlet UILabel *jianjieL;
  25. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineLeft;
  26. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineRight;
  27. @property (weak, nonatomic) IBOutlet UILabel *playTimeL;
  28. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  29. @property (strong, nonatomic) NSMutableArray *dataArray;
  30. + (HomeWeiCousreCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  31. + (HomeWeiCousreCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  32. + (HomeWeiCousreCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  33. + (HomeWeiCousreCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  34. + (HomeWeiCousreCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  35. - (void)setCollData;
  36. - (void)setDataVideoModel:(BookChanelRightModel *)model;
  37. - (void)setDataRightModel:(BookChanelRightModel *)model;
  38. - (void)setDataWithModel:(HomeSubItemModel *)model;
  39. @end
  40. NS_ASSUME_NONNULL_END