我可以使用symbolicatecrash命令来符号化崩溃日志,除了它只解析系统符号之外,一切都很好,但我的应用程序的所有对象都保留为内存地址。如下所示。当我使用xcode导入崩溃时也是同样的结果,我是不是在应用构建设置中遗漏了什么?
Last Exception Backtrace:
0 CoreFoundation 0x3436488f __exceptionPreprocess + 163
1 libobjc.A.dylib 0x36c65259 objc_exception_throw + 33
2 CoreFoundation 0x34364789 +[NSException raise:format:] + 1
3 Foundation 0x34bb63a3 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 91
4 MycoolAp 0x0018330f 0xbb000 + 819983
5 UIKit 0x36d5fc8b -[UIViewController view] + 167
6 UIKit 0x36d6c1e9 -[UIViewController contentScrollView] + 25
7 UIKit 0x36d6c059 -[UINavigationController _computeAndApplyScrollContentInsetDeltaForViewController:] + 37
8 UIKit 0x36d6bf3f -[UINavigationController _layoutViewController:] + 35
9 UIKit 0x36d6b7c1 -[UINavigationController _startTransition:fromViewController:toViewController:] + 501
10 UIKit 0x36d6b503 -[UINavigationController _startDeferredTransitionIfNeeded] + 251
11 UIKit 0x36d5faff -[UINavigationController pushViewController:transition:forceImmediate:] + 807
12 UIKit 0x36d5f7d5 -[UINavigationController pushViewController:animated:] + 37
13 Tapsbook 0x001914f1 0xbb000 + 877809
14 UIKit 0x36dd893d -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 945
15 UIKit 0x36e52627 -[UITableView _userSelectRowAtPendingSelectionIndexPath:] + 159
16 Foundation 0x34be8933 __NSFireDelayedPerform + 415
17 CoreFoundation 0x34338a33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 15
18 CoreFoundation 0x34338699 __CFRunLoopDoTimer + 365
19 CoreFoundation 0x3433726f __CFRunLoopRun + 1207
20 CoreFoundation 0x342ba4a5 CFRunLoopRunSpecific + 301
21 CoreFoundation 0x342ba36d CFRunLoopRunInMode + 105
22 GraphicsServices 0x3829c439 GSEventRunModal + 137
23 UIKit 0x36d54cd5 UIApplicationMain + 1081
24 MycoolAp 0x000bff75 0xbb000 + 20341
25 MycoolAp 0x000bd360 0xbb000 + 9056发布于 2013-01-10 22:58:14
好吧,找出原因,是因为我的spotlight索引服务器被禁用了(我不喜欢它生成了巨大的索引文件并使我的CPU过热),所以xcode找不到合适的应用程序dSYM,一旦我让spotlight索引完成,这个问题就解决了。
https://stackoverflow.com/questions/14241949
复制相似问题