Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/xcode/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xcode 符号化不';无法解析我的应用程序对象_Xcode_Symbolicatecrash - Fatal编程技术网

Xcode 符号化不';无法解析我的应用程序对象

Xcode 符号化不';无法解析我的应用程序对象,xcode,symbolicatecrash,Xcode,Symbolicatecrash,我可以使用symbolicatecrash命令来对崩溃日志进行符号化处理,除了它只解析系统符号外,其他都可以正常工作,但我的应用程序的所有对象都保留为内存地址。。像下面这样。当我使用xcode导入崩溃时,结果也是一样的,我是否错过了应用程序构建设置中的某些内容 Last Exception Backtrace: 0 CoreFoundation 0x3436488f __exceptionPreprocess + 163 1 libobjc.A.

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

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