我试图在我的mac上重新安装iphone sdk。我认为重新安装只会覆盖我以前的安装,但似乎在第二次安装后吃掉了更多的硬盘空间。有谁知道如何刷新我的安装并从头开始释放所有丢失的空间?
答案 0 :(得分:40)
当然至少从Xcode 4.4开始,这已经发生了变化。现在是:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/
和
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/
答案 1 :(得分:16)
也可以使用xcrun
工具获取路径。在Terminal.app中键入以下内容:
xcrun --sdk iphoneos --show-sdk-path
和
xcrun --sdk iphonesimulator --show-sdk-path
这将产生以下结果:
$ xcrun --sdk iphoneos --show-sdk-path
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk
$ xcrun --sdk iphonesimulator --show-sdk-path
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.1.sdk
答案 2 :(得分:4)
每个SDK版本都有SDK文件夹:
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
和
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs