Stefan Diestelmann Posted Saturday at 07:38 PM Share Posted Saturday at 07:38 PM I like to get the URL from OpenURL if my app is called from another App by OpenURL in FMX there is an TApplicationEvent.OpenURL which is triggered an i can get the URL by: var LaunchURL := TiOSOpenApplicationContext(TApplicationEventMessage(AMsg).Value.Context).URL; Or is it already implemented ? Quote Link to comment Share on other sites More sharing options...
Administrators Yaroslav Brovin Posted Saturday at 08:55 PM Administrators Share Posted Saturday at 08:55 PM Hello @Stefan Diestelmann, We have special broadcast of FGX.Platform.iOS.TfgiOSOpenURLWithOptionsMessage. TfgiOSOpenURLWithOptionsMessage = class(TMessage) Url: NSUrl; Options: NSDictionary; Result: Boolean; end; So technically you should subscribe on this message and handle like you did in FMX. Thank you Quote Link to comment Share on other sites More sharing options...
Stefan Diestelmann Posted Sunday at 12:11 AM Author Share Posted Sunday at 12:11 AM Ty it Works perfekt 🙂 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.