刚刚遇到的两个错误,。
1, Terminating app due to uncaught exception‘NSGenericException‘, reason: ‘Push segues can only be used when the sourcecontroller is managed by an instance of UINavigationController.
就是说,你连接两个视图的时候,用Push会报错,解决它有两种方法,
第一个:是在用“Ctrl”连接两个viewcontroller的时候,不要用“push”的方式,而用“modal”的方式。
第二个:就是添加一个UINavigationController咯。
理解下segues的三种连接方式就会明白。
2,[UITableViewController loadView] loaded the "zA7-UT-j1X-view-wwQ-ku-hlX" nib but didn‘t get a UITabl
也有两种解决方法。
1,在头文件中,将所继承的父类UITableViewController 改成 UIViewController。
2,将你的视图 view改成tableView。
Push segues can only be used when the.....,布布扣,bubuko.com
Push segues can only be used when the.....
原文地址:http://www.cnblogs.com/guanliyang/p/3795881.html