We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
librairies/src/u_urlOpen.pas
Line 81 in d62a038
SharedApplication.OpenURL(StrToNSUrl(Url));
This was probably working with older iOS, but with latest one I don't see it working
reason is probably that OpenURL is listed as deprecated and need to use open
https://developer.apple.com/documentation/uikit/uiapplication/openurl(_:) points to https://developer.apple.com/documentation/uikit/uiapplication/open(_:options:completionhandler:) )
however I don't see any open method under SharedApplication (type UIApplication)
The text was updated successfully, but these errors were encountered:
Hi. Thanks for your report. Can you tell me what Delphi release you use and for what iOS version ? (I suppose 18.2)
Sorry, something went wrong.
DeveloppeurPascal
No branches or pull requests
librairies/src/u_urlOpen.pas
Line 81 in d62a038
SharedApplication.OpenURL(StrToNSUrl(Url));
This was probably working with older iOS, but with latest one I don't see it working
reason is probably that OpenURL is listed as deprecated and need to use open
https://developer.apple.com/documentation/uikit/uiapplication/openurl(_:)
points to
https://developer.apple.com/documentation/uikit/uiapplication/open(_:options:completionhandler:) )
however I don't see any open method under SharedApplication (type UIApplication)
The text was updated successfully, but these errors were encountered: