1234567891011121314151617181920212223 |
- //
- // imageDetailsScrollViewController.h
- // 双子星云手机
- //
- // Created by xd h on 2024/5/16.
- //
- #import "BaseViewController.h"
- #import "lastFileManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface imageDetailsScrollViewController : BaseViewController
- @property(nonatomic,assign) NSInteger index;
- @property(nonatomic,strong) NSMutableArray*totalDataArr;
- @property(nonatomic,assign)BOOL canShareType;
- @property (nonatomic,copy) void (^didNeedDeleteFile)(NSString*filePath);
- @end
- NS_ASSUME_NONNULL_END
|