我有这个代码
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"PlaceView"]; [self presentViewController:newView animated:YES completion:nil];
我可以改变观点,但是当我回到这个页面的时候,我会推荐这个观点,国家仍然存在.
我试着放这个代码:
[self.navigationController pushViewController:newView animated:YES];
但不做任何事情.
谢谢
解决方法
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"storyBoardIdentifier"]; [self.navigationController pushViewController:newView animated:YES];
检查2件事情,
>你的故事板标识符是正确的.>根视图具有导航控制器.