1

可能重复:
如何更改 ios sdk?

是否有其他方法可以将 iOS 模拟器 SDK 更改为硬件 -> 版本?

感谢帮助。

编辑: 最后我用applescript得到了它

set selectedVersion to "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk"

set thePListFolderPath to path to preferences folder from user domain as string
set thePListPath to thePListFolderPath & "com.apple.iphonesimulator.plist"
tell application "System Events"
tell property list file thePListPath
tell contents
set value of property list item "currentSDKRoot" to selectedVersion
end tell
end tell
end tell
4

2 回答 2

5

不确定您想要的结果是什么?

您可以在 Xcode Preferences 中安装其他模拟器:

Xcode 首选项:下载

如果您想在 iOS 4.3 或 5.0 上测试您的应用程序,您需要将您的部署目标设置为所需的版本。如果您将部署目标设置为 4.3,您将能够使用运行 iOS 4.3、5.0 或 5.1 的模拟器进行测试。

于 2012-05-07T14:45:58.573 回答
0

是的,如果你已经安装了 isd,然后去 project/target 并选择 3.0 的目标,你所有的模拟器都将显示在那里,你的应用程序将被定位到所需的版本

要下载 sdk,请转到 xocde>downloadds

于 2012-05-07T14:45:55.333 回答