UILocalNotification を使用していますか? その場合、AppDelegate.m で 2 つのシナリオを考慮する必要があります。
1) アプリが終了しました。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//local notification
UILocalNotification *notification = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if ([[notification.userInfo objectForKey:@"your key"] isEqual:@"your object"])
{
// do something
}
}
2: アプリはまだ生きています。
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
// same as before
}