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