HomeGoodBookCell.h 924 B

1234567891011121314151617181920212223242526
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeGoodBookCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  12. @property (weak, nonatomic) IBOutlet UIButton *huanBtn;
  13. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  16. @property (assign, nonatomic)NSInteger type;
  17. @property (copy, nonatomic) void(^ClickIndexBlock)(void);
  18. + (HomeGoodBookCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser;
  20. @end
  21. NS_ASSUME_NONNULL_END