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.
23 lines
493 B
23 lines
493 B
// |
|
// WXYZ_AudioDownloadCacheViewController.h |
|
// WXReader |
|
// |
|
// Created by Andrew on 2020/3/21. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface WXYZ_AudioDownloadCacheViewController : TFBasicViewController |
|
|
|
/// 切换编辑状态 |
|
@property (nonatomic, copy, readonly) BOOL (^editStateBlock)(void); |
|
|
|
@property (nonatomic, copy) void(^changeEditStateBlock)(BOOL status); |
|
|
|
@property (nonatomic, assign) BOOL isEditting; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|