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

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关联控制器不能跳转的问题)