When does a custom URL get populated in launchOptions
in the AppDelegate.m
file? I've loaded my apps' custom URL in Safari and UIApplicationLaunchOptionsURLKey
is not populated.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSLog(@"app launch options");
NSLog([launchOptions valueForKey:UIApplicationLaunchOptionsURLKey]);
}