// // HomeBigshotCell.h // smartRhino // // Created by niuzhen on 2020/6/13. // Copyright © 2020 tederen. All rights reserved. // #import #import "HomeSubModel.h" #import "HomeSubItemModel.h" NS_ASSUME_NONNULL_BEGIN @interface HomeBigshotCell : UITableViewCell @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height; @property (weak, nonatomic) IBOutlet UILabel *CellTitleL; @property (copy, nonatomic) void(^ClickItemBlock)(HomeSubItemModel * pmodel); + (HomeBigshotCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeBigshotCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setDatatype:(NSInteger)type array:(NSArray *)array; - (void)setDatatype:(NSInteger)type model:(HomeSubModel *)model; @end NS_ASSUME_NONNULL_END