iOS – 从代码和故事板推送viewController

前端之家收集整理的这篇文章主要介绍了iOS – 从代码和故事板推送viewController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码
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件事情,

>你的故事板标识符是正确的.>根视图具有导航控制器.

原文链接:https://www.f2er.com/iOS/329592.html

猜你在找的iOS相关文章