我希望我的应用在通过点击通知启动应用时执行特定的操作。当应用程序已经运行到后台时我想做这些特定的事情但是当通过点击通知从应用程序启动FROM SCRATCH(没有运行到后台)时,我想做这些事情。
当通过点击通知从后台启动应用程序时,我会通过以下方式收到通知:
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
=>没有问题!
当通过点击通知从头开始启动应用程序时,我希望通过以下方式获取通知:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
}
但是launchOptions总是零!当应用程序通过点击应用程序图标(正常)从头开始,但是当通过点击通知(不正常)从头开始启动应用程序时,它是零。
有人知道如何解决这个问题吗?
谢谢!!!
编辑1
以下是我的通知创建方式(Joe问题):
NSDictionary *userInfo = [NSDictionary dictionaryWithObjects:
[NSArray arrayWithObjects:notifText,latitudeString,longitudeString,nil]
forKeys:[NSArray arrayWithObjects:@"notifText",@"latitude",@"longitude", nil]];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = itemDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody =msg;
localNotif.alertAction = @"Ok";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
localNotif.userInfo = userInfo;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
编辑2(回答我的问题!:))
这是我用来调试我的应用程序但是...这个程序错误!!
launchOptions等于nil是因为重新启动应用程序与XCode(在这种情况下“等待我的MyApp启动”选项)删除通知,即使它仍然显示在状态栏中...
为了能够通过点击通知从头开始重新启动应用程序后调试检查launchOptions的内容是什么,似乎唯一的方法是在UIAlert中显示此内容,如Tammo的回答中所述福瑞斯。因此,在这种特定情况下使用以下命令进行调试:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"options" message:[launchOptions[UIApplicationLaunchOptionsLocalNotificationKey] description] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
return YES;
}
感谢大家的帮助!!!!
答案 0 :(得分:19)
我在您分享的代码中找不到错误。通常这应该在模拟器和设备上都有效。这是一个适合我的示例:首先生成一个新的Single View iPhone应用程序(ARC和故事板上)。然后在AppDelegate
中更改两个方法,如下所示:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"options" message:[launchOptions[UIApplicationLaunchOptionsLocalNotificationKey] description] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
return YES;
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = [NSDate dateWithTimeInterval:10.0 sinceDate:[NSDate date]];
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"Just some text";
localNotif.alertAction = @"OK";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
localNotif.userInfo = @{@"test": @YES};
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
}
然后启动此应用,按主页按钮,然后停止应用。如果您点击主页按钮后10秒内出现的本地通知,您会看到类似的内容,其中显示本地通知已传递到-application:didFinishLaunchingWithOptions:
:
我的建议是:首先得到我上面发布的示例以确保您的设置没有出错,然后检查您在代码中做的不同。
修改强>
这适用于问题的编辑2:在等待应用程序启动时(在模拟器中,而不是在设备上),本地通知似乎也适用于我。试试这个:
答案 1 :(得分:1)
不知道这是不是你想要的,但你错过了'返回YES;'? 因为我使用它从通知执行segue到新视图,它工作正常
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UINavigationController *navigation = (UINavigationController *) self.window.rootViewController;
[navigation.visibleViewController performSegueWithIdentifier:@"Ident" sender:nil];
return YES;
}
答案 2 :(得分:1)
我的结论和建议是否可以解决任何问题,请参阅下文
每当您有新的版本来测试您的应用时,您必须使用最新应用生成的通知测试通知点击操作。如果您继续使用旧版本生成的旧通知测试点击操作,那么它会出现意外行为(意味着它能够启动应用程序,但它不会在didFinishLaunchingWithOptions中返回任何有效信息:)
答案 3 :(得分:0)
请原谅我,当谈到Apple推送通知服务时,我仍然是新手,但我通过他们的文档阅读了一些内容,我的猜测是创建本地通知可能会导致问题。
我会仔细检查如何使用Apple的示例创建本地通知,如清单2-1中所示here,以排除这种可能性。由于在此线程中没有向我们显示用于创建本地通知的某些代码,因此很难评估本地通知的实例化是否确实正确。它可能最终变得简单,因为火灾日期或通知中的其他内容没有正确设置。