用于iOS设备查看沙盒文件的工具
Add the next string in your project's Podfile:
pod 'OSFileBrowser', '0.1.6'
then run in Terminal:
pod install
Objective C:
#import <OSFileBrowser.h>
OSFileCollectionViewController *vc = [[OSFileCollectionViewController alloc]
initWithDirectoryArray:@[ [NSString getRootPath],[NSString getDocumentPath]]
controllerMode:OSFileCollectionViewControllerModeDefault];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:vc];
[self.navigationController pushViewController:vc animated:YES];
MIT