// // HomeGoodBookCell.h // smartRhino // // Created by niuzhen on 2020/5/20. // Copyright © 2020 tederen. All rights reserved. // #import #import "HomeSubModel.h" #import "HomeSubItemModel.h" NS_ASSUME_NONNULL_BEGIN @interface HomeGoodBookCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *TitleL; @property (weak, nonatomic) IBOutlet UIButton *huanBtn; @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height; @property (assign, nonatomic)NSInteger type; @property (strong, nonatomic) HomeSubModel * model; @property (copy, nonatomic) void(^ClickItemBlock)(HomeSubItemModel * pmodel); + (HomeGoodBookCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser model:(HomeSubModel *)model; @end NS_ASSUME_NONNULL_END