xcode工具导致应用程序崩溃

时间:2011-06-16 13:20:48

标签: crash xcode-instruments

我正在使用xcode Instruments来跟踪分配和泄漏。我的应用程序崩溃了。只有在Instruments:

下运行常规调试或发布版本时,它才会崩溃

任何想法的想法都非常感激......

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0002b2e0
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libobjc.A.dylib                 0x34499c96 objc_msgSend + 14
1   ZZZ Test Suite                  0x000a3d74 0x95000 + 60788
2   CoreFoundation                  0x308e4c3c -[NSObject(NSObject) release] + 24
3   CoreFoundation                  0x308e519a CFRelease + 62
4   CoreFoundation                  0x308e7eb4 _CFAutoreleasePoolPop + 140
5   Foundation                      0x341b41c4 -[NSAutoreleasePool release] + 92
6   UIKit                           0x309e5f08 _UIApplicationHandleEvent + 5784
7   GraphicsServices                0x30269e70 PurpleEventCallback + 660
8   CoreFoundation                  0x30957a90 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 20
9   CoreFoundation                  0x30959838 __CFRunLoopDoSource1 + 160
10  CoreFoundation                  0x3095a606 __CFRunLoopRun + 514
11  CoreFoundation                  0x308eaebc CFRunLoopRunSpecific + 224
12  CoreFoundation                  0x308eadc4 CFRunLoopRunInMode + 52
13  GraphicsServices                0x30269418 GSEventRunModal + 108
14  GraphicsServices                0x302694c4 GSEventRun + 56
15  UIKit                           0x30a10d62 -[UIApplication _run] + 398
16  UIKit                           0x30a0e800 UIApplicationMain + 664
17  ZZZ Test Suite                  0x0009665c 0x95000 + 5724
18  ZZZ Test Suite                  0x00096604 0x95000 + 5636

 

2 个答案:

答案 0 :(得分:3)

首先尝试通过分析仪运行它。您可以从| product |中的xcode运行它菜单然后选择分析。它是一个静态分析器(clang),它在构建代码时对其进行分析,因此通过静态分析可以清楚地看到导致代码在运行时崩溃的任何问题。尝试一下,解决它引发的任何问题然后再次尝试仪器。

答案 1 :(得分:3)

作为Ian上述内容的补充: 将环境变量“NSZombieEnabled”设置为YES 希望你有更多的信息失败。

(在XCode 4中,环境变量位于“编辑方案”下并选择“调试”)