重複の可能性:
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