// // TFBookStoreNovelBasicViewCell.h // TFReader // // Created by 谢腾飞 on 2020/12/16. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import #import "TFBookStoreLabelModel.h" NS_ASSUME_NONNULL_BEGIN @interface TFBookStoreNovelBasicViewCell : TFBasicTableViewCell @property (nonatomic ,strong) UILabel *titleLabel; @property (nonatomic ,strong) UICollectionView *collectionView; // 默认 NO 与showTopRefreshButton 互斥 @property (nonatomic ,assign) BOOL showTopMoreBtn; // 默认 NO 与showTopMoreButton 互斥 @property (nonatomic ,assign) BOOL showTopRefreshBtn; @property (nonatomic ,strong) TFBookStoreLabelModel *labelModel; @property (nonatomic ,copy) void (^cellDidSelectItemBlock)(NSInteger production_id); @property (nonatomic ,copy) void (^cellSelectMoreBlock)(TFBookStoreLabelModel *labelModel); @property (nonatomic ,copy) void (^cellSelectRefreshBlock)(TFBookStoreLabelModel *labelModel, NSIndexPath *indexPath); // 停止刷新状态 - (void)stopRefreshing; @end NS_ASSUME_NONNULL_END