When doing a build on xcode 16 targeting ios 18 the share flow no longer works. The extension will complain about calling openUrl: so we switch to call openUrl:options:completionHandler:. Annoyingly we can't keep performSelector so we have to use this invocation flow since there are more parameters now. This does not work in the sim but does on device
When doing a build on xcode 16 targeting ios 18 the share flow no longer works. The extension will complain about calling
openUrl:
so we switch to callopenUrl:options:completionHandler:
. Annoyingly we can't keepperformSelector
so we have to use this invocation flow since there are more parameters now. This does not work in the sim but does on device