HomeWeiCousreCell.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeWeiCousreCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  12. @property (weak, nonatomic) IBOutlet UIImageView *imgV;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  15. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  16. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  17. @property (weak, nonatomic) IBOutlet UIImageView *yunV;
  18. @property (weak, nonatomic) IBOutlet UILabel *numL;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *nameContant;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *timeContant;
  21. @property (weak, nonatomic) IBOutlet UIView *lineV;
  22. @property (weak, nonatomic) IBOutlet UILabel *jianjieL;
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineLeft;
  24. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineRight;
  25. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  26. @property (strong, nonatomic) NSMutableArray *dataArray;
  27. + (HomeWeiCousreCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  28. + (HomeWeiCousreCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  29. + (HomeWeiCousreCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  30. + (HomeWeiCousreCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  31. - (void)setCollData;
  32. @end
  33. NS_ASSUME_NONNULL_END