1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Platform: Remove compatibility checks for iOS 11

This commit is contained in:
reuk 2024-07-01 17:51:25 +01:00
parent 6428f43eeb
commit 5391032238
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
6 changed files with 77 additions and 125 deletions

View file

@ -218,8 +218,7 @@ private:
{
controller.reset ([[FileChooserControllerClass alloc] initWithDocumentTypes: utTypeArray inMode: UIDocumentPickerModeOpen]);
if (@available (iOS 11.0, *))
[controller.get() setAllowsMultipleSelection: (flags & FileBrowserComponent::canSelectMultipleItems) != 0];
[controller.get() setAllowsMultipleSelection: (flags & FileBrowserComponent::canSelectMultipleItems) != 0];
}
[controller.get() setDelegate: delegate.get()];