문제

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!

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top