Reputation: 711
I downloaded a simple demo for Dropbox Chooser& its works fine for me.
but How can I set file type for chooser
same as for JS Chooser.
JavaScript is able to set file type for chooser like as follow:
set options param with extensions: ['.pdf', '.doc', '.docx'],
Help me to solve this
Thanks
Upvotes: 0
Views: 243
Reputation: 1120
You can use this sample which give you the capability to list only the types you want by using
dropboxBrowser.allowedFileTypes = @[@"pdf"];
Good Luck
Upvotes: 0