遍历沙盒目录下的非文件夹文件,可以直接查看文本,可以使用 airDrop 发送到其他 App,或者发送邮件
由于 iOS 10 无法使用 iTools 等工具导出沙盒中的文件,所以做了这样一个页面,利用邮件发送沙盒中的文件,以便更好地了解程序的调试及文件处理情况。
pod 'SandBoxFileList', '~> 1.0.0'
pod install
使用方法
FileListTableViewController *fileListVC = [[FileListTableViewController alloc] init];
[self.navigationController pushViewController:fileListVC animated:YES];
或者
FileListTableViewController *fileListVC = [[FileListTableViewController alloc] init];
[self presentViewController:fileListVC animated:YES completion:nil];
效果图