美文网首页
storyboard关联控制器不能跳转的问题

storyboard关联控制器不能跳转的问题

作者: 老夫撩发少年狂 | 来源:发表于2016-12-06 16:40 被阅读58次

Terminating app due to uncaught exception'NSGenericException', reason: 'Push segues can only be used when the sourcecontroller is managed by an instance of UINavigationController.

这个错误的意思是,在连接两个viewController的时候,使用了“push”的方式,但是源viewController不是UINavigationController的实例,所以异常,程序终止。

解决这个错误有两种方法:

第一个:是在用“Ctrl”连接两个viewcontroller的时候,不要用“push”的方式,而用“modal”的方式。

第二个:就是添加一个UINavigationController。

相关文章

网友评论

      本文标题:storyboard关联控制器不能跳转的问题

      本文链接:https://www.haomeiwen.com/subject/dyyrmttx.html