marmelroy / FileBrowser

Finder-style iOS file browser written in Swift
MIT License
1.51k stars 221 forks source link

iOS native icons #44

Open ColdGrub1384 opened 5 years ago

ColdGrub1384 commented 5 years ago

iOS has native icons for files, different than icons on macOS. Why don't use those icons? You can get icons for a file like this:

let controller = UIDocumentInteractionController(url: <#File URL#>)
controller.icons.last // The icon

UIDocumentInteractionController.icons

I can submit a pull request if you want, it's very easy to implement.

ColdGrub1384 commented 5 years ago

So?