Posted March 18, 20232 yr 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 ?
March 18, 20232 yr Administrators 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
Create an account or sign in to comment