iPhone应用程序在设备上崩溃,找不到文件

问题描述:

我看到此错误

无法读取/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.2(8H7)/ Symbols / Developer / usr的符号/lib/libXcodeDebuggerSupport.dylib(找不到文件)。

Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.2 (8H7)/Symbols/Developer/usr/lib/libXcodeDebuggerSupport.dylib (file not found).

我试过这个解决方案但它没有用。
有人可以帮我解决这个问题。

I've tried this solution but it didn't work. Can someone help me how to fix this issue.

因为您使用的是与解决方案不同的SDK你指出,你需要调整命令才能使它正确。如果你这样做它应该自行修复

Since you're using a different SDK than the solution you pointed at, you do need to tweak the commands to make it right. It should fix itself if you do

cd "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.2 (8H7)/Symbols/"
sudo ln -s ../../Latest/Symbols/Developer
(enter your password at prompt)

可能无法帮助您实际崩溃,但它应该摆脱找不到文件的消息。

Might not help your actual crash, but it should get rid of the file not found message.