// // HomeBigshotCell.h // smartRhino // // Created by niuzhen on 2020/6/13. // Copyright © 2020 tederen. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface HomeBigshotCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout> @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height; + (HomeBigshotCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeBigshotCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setDatatype:(NSInteger)type; @end NS_ASSUME_NONNULL_END