本文介绍了在3.0.1更新后置备iPhone时出现问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我曾经能够在运行3.0的iPhone上运行我的应用程序.更新到3.0.1后,出现错误:
I used to be able to run my application on my iPhone that was running 3.0. After I updated to 3.0.1 I get the error:
未连接预配置的iPhone OS设备.
No Provisioned iPhone OS Device is Connected.
我在终端中遵循了Apple的指南:
I followed Apple's guide in the terminal:
ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /
Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1
但这没有帮助.
推荐答案
请确保不要像当前一样将其粘贴到Terminal中(和Apple在其PDF中所拥有的一样).应该是一行,而不是两行.
Make sure that you don't paste it into Terminal as you currently have it (and as Apple have it in their PDF). It should be one line, not two.
ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1
不是
ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /
Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1
这篇关于在3.0.1更新后置备iPhone时出现问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!