升级到XCode4(v.4.2,4D199)后,似乎每次我的应用程序在调试时崩溃,调试都指向main(),堆栈是非符号化的,没用。
多年来一直运作良好,我不知道出了什么问题。
我正在使用GDB。我也根据this advice尝试了LLDB,它也没有用(类似的,无用的堆栈)。
我的断点工作,我得到完整的堆栈,并且可以在我的代码命中时检查变量。
重现的步骤:
NB。这种情况发生在我自己的项目中,但我会在这里使用Apple的代码从等式中删除该变量
从Apple下载以下示例:https://developer.apple.com/library/ios/#samplecode/UICatalog/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007710
在ImagesViewController
类中,将以下代码添加到viewDidLoad
方法中(因此它会崩溃 - 我们希望它在此测试中崩溃):
// please note: this code is designed to crash! I want it to crash, to highlight my issue with XCode.
NSMutableArray* test = [NSMutableArray new];
[test insertObject:NULL atIndex:0];
然后运行应用程序&点击图像'行。
它崩溃了,如:
2011-12-23 14:07:02.788 UICatalog[13394:707] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
*** First throw call stack:
(0x37bbb8bf 0x316a11e5 0x37b1020f 0x699f 0x34fac7ff 0x34fb8c39 0x34fb8aa9 0x34fb898f 0x34fb815b 0x34fb7f53 0x34fac673 0x34fac349 0x66c1 0x35026565 0x3509ece7 0x31aec943 0x37b8fa63 0x37b8f6c9 0x37b8e29f 0x37b114dd 0x37b113a5 0x3768ffcd 0x34fa1743 0x2459 0x2418)
terminate called throwing an exception(gdb)
在xcode中查看: