2

我已迁移到 Mountain Lion 操作系统版本 10.8.2。从山狮开始,安装了 xCode 4.5.1。现在我只获得了开发目标 iOS 6。但是,我必须在 xCode 4.5.1 中部署两个版本的 sdk(iOS 5 和 iOS 4)。

如何在 xCode4.5.1 中同时拥有 iOS 5 和 iOS 4 SDK(模拟器)?

请帮忙。

谢谢,鲁比尼

4

1 回答 1

3

这是你需要做的..

  • 从 developer.apple.com 下载 XCode 4.3.* dmg 并安装应用程序
  • 双击 dmg 文件
  • 右键单击 XCode 图标并选择“显示包内容”
  • 导航到目录 /Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
  • 将目录 iPhoneSimulator5.1.sdk 拖到桌面
  • 打开终端会话并执行以下命令

    cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs

    sudo mv $HOME/Desktop/iPhoneSimulator5.1.sdk 。

    sudo chmod -R root:wheel iPhoneSimulator5.1.sdk

  • 重启 XCode

  • 现在,如果您启动模拟器,您应该能够切换到硬件下的 iOS 5.1 选项
  • 如果你还想在 iOS5 上测试,从 iPhoneOS.platform 目录复制相关的 SDK
于 2012-10-30T15:05:48.300 回答