iOS 10.1(完整发布版本)与最新版Xcode不兼容。

3

我需要使用IOS 10.1完整版本来运行我正在构建的应用程序。如何使最新版本的Xcode(版本8.1)与IOS 10.1完整版本兼容?


目前还没有提供XCode 8.1 - 我相信会有一个更新来解决这个问题。我和你的情况完全一样。 - Anya Shenanigans
我整天都在这艘船上。 - Jonny
1
我不太清楚你遇到了什么问题。我使用的是 Xcode 8.1(昨天发布)来构建和运行在运行 iOS 10.1(昨天发布)的设备上。它们是相配套的。 - matt
3个回答

1

Xcode 8.1目前只处于Gold Master版本。您需要等待“完整”的8.1版本在App Store上发布,此前您必须使用8.0来存档您的项目。


1

对于这个问题,gist提供了一个解决方法,即通过符号链接到Xcode的Beta版本来解决。

供参考复制:

// The trick is to link the DeviceSupport folder from the beta to the stable version.

ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.1\ \(14B54\)/ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

// Then restart Xcode and recommect your devices. You will need to do that for every beta of iOS 10.1+/Xcode 8.

// sudo needed if you run the Mac App Store version. Always download the dmg instead... you'll thank me later :)

0

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接