Hello,
So I am trying to probe the UIApplicationLaunchOptionsURLKey to see if my application was launched by another app. For example, what if I want to do something like this:
if (UIApplicationLaunchOptionsURLKey != NULL) {
[window addSubview:launchViewController.view];
} else {
[window addSubview:viewController.view];
}
In other words, if the app is launched from the desktop, it will show one view, but if it called from another app through a custom URL, it will display a different view. When I step through and examine the field, it says "Unknown type". Any ideas? Thanks ahead of time.