You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
// |
|
// TFBookStoreNovelBasicViewCell.h |
|
// TFReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/16. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#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
|
|
|