HomeGoodBookCell.h 1.0 KB

123456789101112131415161718192021222324252627
  1. //
  2. // HomeGoodBookCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/20.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeGoodBookCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  12. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  13. @property (weak, nonatomic) IBOutlet UIButton *huanBtn;
  14. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  17. @property (assign, nonatomic)NSInteger type;
  18. @property (copy, nonatomic) HomeSubModel * model;
  19. @property (copy, nonatomic) void(^ClickIndexBlock)(void);
  20. + (HomeGoodBookCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  21. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser model:(HomeSubModel *)model;
  22. @end
  23. NS_ASSUME_NONNULL_END