juce: use passed in dir for file open browse in ios
This commit is contained in:
parent
7a95ca9c82
commit
923e80372a
@ -87,6 +87,14 @@ public:
|
||||
{
|
||||
controller.reset ([controllerClassInstance initWithDocumentTypes: utTypeArray
|
||||
inMode: UIDocumentPickerModeOpen]);
|
||||
|
||||
if (@available(iOS 13, *)) {
|
||||
if (owner.startingFile.exists()) {
|
||||
auto url = [[NSURL alloc] initFileURLWithPath: juceStringToNS (owner.startingFile.getFullPathName())];
|
||||
[controller.get() setDirectoryURL:url];
|
||||
[url release];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
FileChooserControllerClass::setOwner (controller.get(), this);
|
||||
|
Loading…
Reference in New Issue
Block a user