12345678910111213141516171819202122232425262728 |
- //
- // HomeBigshotCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/6/13.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubModel.h"
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeBigshotCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @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
|