Ink / ios-picker

[DEPRECATED] The easiest way to import content into your application. http://filepicker.io
MIT License
226 stars 78 forks source link

How to specify filetype/file-extension #87

Closed panxshaz closed 9 years ago

panxshaz commented 9 years ago

It might seem like a dumb question. Believe me I did google it. Anyway, so this is what I want to do: Specify a file extension (say .skp) and have the controller list only the files have that extension.

Is it possible?

dzana commented 9 years ago

Hi,

There is only option setting mime-type filter.

Example: FPPickerController fpController = [FPPickerController new]; fpController.dataTypes = @[@"image/png", @"video/"];

Regards, Damian