Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom URL Scheme for iOS App when not backgrounding

I have set up a custom deep-linking iOS URL scheme for my app, and I listen for it in

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {

I parse the URL and send a notification using NSNotificationCenter, with the URL as the object, to the appropriate class to handle the URL.

This all works great when the app is "backgrounded" but when the app is fully closed out of multitasking, it seems like the notification never gets sent (or received). Am I missing something about the process of notifications when the app isn't in backgrounding? Is there another way to pass along the information from the URL? Or is there at least a way to tell if the app is coming out of backgrounding or if it is a fresh launch?

Thanks!

like image 436
JeffN Avatar asked Oct 22 '22 04:10

JeffN


1 Answers

You should check the launchOptions dictionary that is passed into applicationDidFinishLuanching:withOptions:.

For full details on what is included in the options dictionary: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html

like image 126
Mike D Avatar answered Oct 24 '22 05:10

Mike D