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
808 B
34 lines
808 B
// |
|
// TFNovelDownloadManagerStateCell.h |
|
// TFReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/16. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "TFNovelDownloadTaskListModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface TFNovelDownloadManagerStateCell : TFBasicTableViewCell |
|
|
|
@property (nonatomic ,strong) TFDownloadTaskModel *downloadTaskModel; |
|
|
|
@property (nonatomic ,strong) TFProductionModel *bookModel; |
|
|
|
@property (nonatomic ,strong) UIButton *retryButton; |
|
|
|
@property (nonatomic ,assign, readonly) BOOL isEditting; |
|
|
|
/// 选择编辑单元 |
|
@property (nonatomic ,copy) void(^selecteEdittingCellBlock)(TFProductionModel *bookModel); |
|
|
|
- (void)setEditing:(BOOL)editing; |
|
|
|
// 强行设置编辑状态 |
|
- (void)set_Editing:(BOOL)editing; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|