Seems like there is some problem with the newest version of juce. Since I installed it FileChooser isn’t working anymore “browseForFileToSave()” and “browseForFileToOpen()” can’t be found anymore by XCode.
reuk
August 23, 2021, 12:15pm
2
This is a side-effect of a change which disables modal loops by default:
Change
------
The default value of JUCE_MODAL_LOOPS_PERMITTED has been changed from 1 to 0.
Possible Issues
---------------
With JUCE_MODAL_LOOPS_PERMITTED set to 0 code that previously relied upon modal
loops will need to be rewritten to use asynchronous versions of the modal
functions. There is no non-modal alternative to
AlterWindow::showNativeDialogBox and the previously modal behaviour of the
MultiDocumentPanel destructor has changed.
Workaround
----------
Set JUCE_MODAL_LOOPS_PERMITTED back to 1.
Rationale
---------
Modal operations are a frequent source of problems, particularly when used in
plug-ins. On Android modal loops are not possible, so people wanting to target
This file has been truncated. show original
The modal versions of these functions are very unsafe in plugins, and it’s a good idea to use the async alternatives instead.
Ah thanks for the quick response.