プッシュ通知を受信したら、ナビゲーション コントローラーを最初のビューに戻したいです。タブ バーは認識されますが、ナビゲーション コントローラーは戻りません。
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
if (application.applicationState == UIApplicationStateInactive){
UITabBarController *tabb = (UITabBarController *)self.window.rootViewController;
tabb.selectedIndex = 0;
UINavigationController *nav = (UINavigationController *)tabb.navigationController;
[nav popToRootViewControllerAnimated:YES];
}
}