0

我可以使用 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
4

1 回答 1

0

好的,找出原因,这是因为我的聚光灯索引服务器被禁用(我不喜欢它生成巨大的索引文件并加热我的 CPU),所以一旦我让聚光灯索引完成,xcode 就找不到合适的应用程序 dSYM,然后修复了这个问题。

于 2013-01-10T14:58:14.493 回答