Quantcast
Channel: iOS and tvOS
Viewing all articles
Browse latest Browse all 10823

Callback on launching from URL Scheme?

$
0
0
Is UnityEngine implemented any callback / delegate I can listen to,
for catching app launches with URL scheme?

I can see that the generated Xcode project does something in UnityAppController.mm.

Code (Objective-C):
  1. - (BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation
  2. {
  3.     // ...
  4.     AppController_SendNotificationWithArg(kUnityOnOpenURL, notifData);
  5.     // ...
  6. }
Which later seems to...

Callback on launching from URL Scheme?

Viewing all articles
Browse latest Browse all 10823

Trending Articles