推的viewController我有這樣的代碼iOS的 - 從代碼和故事板
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"PlaceView"];
[self presentViewController:newView animated:YES completion:nil];
而且我可以改變看法,但我將推動這一觀點時,我在此頁面返回的狀態持續。
我嘗試把這個代碼:
[self.navigationController pushViewController:newView animated:YES];
,但不會做任何事情。
感謝
在哪裏? (對不起,不知道) – Xose
而不是'[self.navigationController pushViewController:newView animated:YES];'你應該使用'[self performSegueWithIdentifer:@「You identifier」sender:self];' – Sumanth
「沒有可見的@interface聲明選擇「performSegueWithIdentifer:發件人」」 我有這樣的錯誤 – Xose