Thread 1:breakpoint 1.3 error in AppDelegate.m file

运行程序时,发生了error错误,

crash在了[self.window makeKeyAndVisible]; 报错-->// Thread 1: breakpoint 1.3

原因和解决:


Check your xib files for deleted outlets that are still linked: 

enter image description here

I guess the first priority to check is your root view controller's xib file WhereamiViewController.xib

发现是写xib的时候添加了两次tableview控件然后删了一个,造成了有一个File's Owner 的 Outlets有一个连接有问题

所以我们需要 1.断开有问题的Outlet连接,

   2.点中需要连接的控件“空心”,连线到xib面板上与之对应的控件,重新建立连接。

posted on 2014-02-26 18:22  金玉游龙  阅读(182)  评论(0编辑  收藏  举报

导航