Xcode 5 not detecting iPhone running iOS 8

2020-06-16 02:01发布

I have an iPhone with iOS 8 installed on it, but when I connect it to Xcode 5.1, it doesn't recognize it.

7条回答
Deceive 欺骗
2楼-- · 2020-06-16 02:26

the only decent way to make it work is to create a symbolic link to a folder that contains binary for iOS8. You can make fool Xcode 5.1 saying "yes, iOS 8 is ok." via a symlink:

In my case I have Xcode 5.1 on Mavericks HD, and Xcode 6.0 beta 4 on Yosemite HD.

I did:

sudo ln -s /Applications/Xcode6-Beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.0\ (12A4331d) /Volumes/MAVERICKS/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.0\ (12A4331d)

and Xcode 5.1 did work with my iOS8 iphone.

(note the space before /Volumes/MAVER... )

PS: for every beta, I have to patch again... :(

查看更多
登录 后发表回答