HomeBigshotCell.h 708 B

12345678910111213141516171819202122
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeBigshotCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  12. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  13. + (HomeBigshotCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  14. + (HomeBigshotCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  15. - (void)setDatatype:(NSInteger)type;
  16. @end
  17. NS_ASSUME_NONNULL_END