找不到开发人员磁盘映像iOS 10

问题描述 投票:7回答:3

我已将iOS设备更新为iOS 10,现在Xcode在尝试使用Xcode 7.3.1在iPhone上运行时说“无法找到开发者磁盘映像”如何解决问题并使Xcode支持iOS 10设备?

iphone xcode ios10
3个回答
29
投票

如果您想在iOS10设备上使用Xcode 7进行开发:

  1. 将您的Xcode.app重命名为Xcode7.app并从应用商店下载Xcode 8。
  2. 运行Xcode 8一次以安装它。
  3. 打开终端并使用以下命令创建从Xcode 8 Developer Disk Image 10.0到Xcode 8 Developer Disk Image文件夹的符号链接:

ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.0 \(14A345)/Applications/Xcode7.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.0

注意:这适用于Xcode 9及更高版本

Source

2018年更新: 如果你想在iOS 12上使用Xcode 9:

  1. 下载Xcode 10(目前仍处于测试阶段)
  2. 将它作为Xcode-beta.app放在Application文件夹中
  3. 打开终端并使用以下命令:

ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.0 \(16A5354b)/ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.0


2
投票

正如holex说安装Xcode 8解决了这个问题


0
投票

您可以尝试从移动设备下载所需iOS版本的开发人员磁盘映像;如果您只想要一个快速简单的解决方案..

你需要转到:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneO‌​S.platform/DeviceSup‌​port/

并粘贴您手动下载的开发人员磁盘映像。

© www.soinside.com 2019 - 2024. All rights reserved.