我正在使用故事板,並且當用戶收到遠程推送通知時,即使應用程序處於後臺或打開狀態,我也想始終打開相同的視圖。我需要展示的視圖是在故事板中設置的初始視圖控制器之後的四個視圖。我看了這個帖子:打開視圖控制器接收遠程推送通知時
How can I show a modal view in response to a notification as a new window? (no parent vc)
Open a specific tab/view when user receives a push notification
因此,這裏是我的代碼:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
UINavigationController *navController = (UINavigationController *)self.window.rootViewController;
notificacionViewController *menu = [navController.storyboard instantiateViewControllerWithIdentifier:@"notificacion"];
// First item in array is bottom of stack, last item is top.
navController.viewControllers = [NSArray arrayWithObjects:menu,nil];
[self.window makeKeyAndVisible];
}
但是,當我收到通知,應用程序崩潰與此錯誤:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[locationViewController setViewControllers:]: unrecognized selector sent to instance 0x42ccd0'
locationViewController是視圖控件ller在故事板中設置爲初始。
非常感謝。
假設,「HomeViewController」是在故事板的初始視圖控制器,並點擊一個按鈕,現在經過你是通過push方法在「SecondViewController」中的。現在,您正在收到推送通知。你想推「NotificationViewController」還是以模態方式呈現? –
Modally,所以我不確定理解你的解釋,你建議推棧,直到我得到notificacionViewController?謝謝 – theomen