update
This commit is contained in:
32
Pods/CocoaDebug/Sources/Sandbox/_Sandboxer.h
generated
Executable file
32
Pods/CocoaDebug/Sources/Sandbox/_Sandboxer.h
generated
Executable file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// Example
|
||||
// man
|
||||
//
|
||||
// Created by man 11/11/2018.
|
||||
// Copyright © 2020 man. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface _Sandboxer : NSObject
|
||||
|
||||
@property (class, nonatomic, readonly, strong) _Sandboxer *shared;
|
||||
|
||||
@property (nonatomic, assign, getter=isSystemFilesHidden) BOOL systemFilesHidden; // Default is YES
|
||||
@property (nonatomic, copy) NSURL *homeFileURL; // Default is Home Directory
|
||||
@property (nonatomic, copy) NSString *homeTitle; // Default is `Home`
|
||||
|
||||
@property (nonatomic, assign, getter=isExtensionHidden) BOOL extensionHidden; // Default is NO
|
||||
|
||||
@property (nonatomic, assign, getter=isShareable) BOOL shareable; // Default is YES
|
||||
|
||||
@property (nonatomic, assign, getter=isFileDeletable) BOOL fileDeletable; // Default is NO
|
||||
@property (nonatomic, assign, getter=isDirectoryDeletable) BOOL directoryDeletable; // Default is NO
|
||||
|
||||
- (instancetype)init __attribute__((unavailable("Use [_Sandboxer shared] or _Sandboxer.shared instead.")));
|
||||
|
||||
//liman
|
||||
- (UINavigationController *)homeDirectoryNavigationController;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user