A simple iOS sandbox file browser, enable you to view sandbox file system on iOS device, share files via airdrop, super convenient when you want to send log files from iOS device to Mac. reference from AirSandbox, Thanks !
To integrate SandboxBrowser into your Xcode project using CocoaPods, specify it in your Podfile:
pod 'SandboxBrowser'
Then, run pod install.
import SandboxBrowser
let sandboxBrowser = SandboxBrowser()
present(sandboxBrowser, animated: true, completion: nil)
Open the sandbox directory by default, and you can specify the directory
let sandboxBrowser = SandboxBrowser(initialPath: customURL)
Use the didSelectFile closure to change FileBrowser's behaviour when a file is selected.
sandboxBrowser.didSelectFile = { file, vc in
print(file.name, file.type)
}
Long press file share via AirDrop
MIT