I am trying to save some data in NSUserDefaults in application:openURL:sourceApplication:annotation: method in UIApplicationDelegate, and then read this data in viewDidLoad: in my main view controller. However, the data is always empty!
If I save the same data in viewDidLoad: in the main view controller, it's immediately visible and recoverable, but it's not when I save it in UIApplicationDelegate.
Any idea of this behavior? Thank you.
Here is the code:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
// Save my data
[[NSUserDefaults standardUserDefaults] setURL:url forKey:@"url"];
[[NSUserDefaults standardUserDefaults] synchronize];
return YES;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// It's always false !!
if ([[NSUserDefaults standardUserDefaults] URLforKey:@"url"] != nil){
// Do something with url
}
}
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotationdelegate is invoking or not. That delegate will invoked only if it is launched using URL schema. – Taruni Neema Oct 1 '12 at 10:04