Hi,
I want to know how the app was started - in the normal way, or via a link.
iOS has this delegate; application:openURL:sourceApplication:annotation
so you can do this;
(BOOL)application:(UIApplication \*)application openURL:(NSURL \*)url sourceApplication:(NSString \*)sourceApplication annotation:(id)annotation { NSLog(@"Launched with URL: %@", url.absoluteString); }
but how do I get that url in Corona?
(i realize that the delegate is more generate than just startup, but that doesn’t matter, i know if the app is starting or not… )
thanks.