HomeBigshotCell.h 880 B

1234567891011121314151617181920212223242526
  1. //
  2. // HomeBigshotCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/13.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeBigshotCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  12. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  14. @property (weak, nonatomic) IBOutlet UILabel *CellTitleL;
  15. + (HomeBigshotCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  16. + (HomeBigshotCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  17. - (void)setDatatype:(NSInteger)type array:(NSArray *)array;
  18. - (void)setDatatype:(NSInteger)type model:(HomeSubModel *)model;
  19. @end
  20. NS_ASSUME_NONNULL_END