Hello,
I’ve some problems to make FileChooser using the OSNativeDialogBox to works in iOS
Browsing a file to open it
c->browseForFileToOpen()
When attempt to copy the file using
fileSrc.copyFileTo(soundFontDest)
in app documents folder or appGroup shared folder, for instance
I got this message:
The fileSrc couldn’t be opened because you don’t have permission to view it.
After few days I’ve discovered that the problem is related to the juce_ios_FileChooser.mm file, row 88
controller.reset ([controllerClassInstance initWithDocumentTypes: utTypeArray
inMode: UIDocumentPickerModeOpen]);
changing UIDocumentPickerModeOpen in UIDocumentPickerModeImport
it works as aspected.
Since the browseForFileToOpen is generic, maybe it is better to change definitively in UIDocumentPickerModeImport?
Is there a reason why I cannot get to works the copying with UIDocumentPickerModeOpen?
Thank you, cheers.
