UILocalNotification を使用しています。通知が表示され、ユーザーが alertAction をクリックしたときに、アプリの読み込み時に特定のビューに移動するにはどうすればよいですか? (カレンダー アプリがアラートされたイベントを表示する方法と同様です)。
私は使っている:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOption {
UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if (localNotif) {
NSString *itemName = [localNotif.userInfo objectForKey:ItemListKey];
// [viewController displayItem:itemName]; // custom method
application.applicationIconBadgeNumber = localNotif.applicationIconBadgeNumber-1;
NSLog(@"has localNotif %@",itemName);
}
return YES;
}