Workaround: Xcode27 下载iOS 27.0 Simulator

问题

解压缩Xcode_27_beta.xip后正常安装,但是发现下载iOS 27 runtime的时候一直卡住,切了各种环境都无效果。

方案

基于xcodebuild安装

切换默认的xcode

  • 参考Apple官方的文档https://developer.apple.com/documentation/xcode/downloading-and-installing-additional-xcode-components#Download-and-install-new-hardware-support-in-between-Xcode-releases

  • Xcode_27_beta.xip默认解压后叫Xcode-beta.这里我重命名叫 Xcode27-beta,为了方便区别主Xcode

  • Xcode27-beta拖进/Applications文件夹

  • 下面命令开始切换默认xcode

shell 复制代码
xcode-select -s /Applications/Xcode27-beta.app 
xcodebuild -runFirstLaunch -checkForNewerComponents

使用xcodebuild下载

  • 官方文档https://developer.apple.com/documentation/xcode/downloading-and-installing-additional-xcode-components#Download-Xcode-components-from-the-command-line

执行

shell 复制代码
xcodebuild -downloadPlatform iOS -architectureVariant arm64

会输出

shell 复制代码
Finding content...
Downloading iOS 27.0 Simulator (24A5355p) (arm64): 70.2% (5.89 GB of 8.39 GB)
  • 注意,要指定arm64。下面是我没有指定然后告诉我找不到
rust 复制代码
xcodebuild -downloadPlatform iOS -exportPath ~/Downloads

Automatically resolved architecture variant for platform iOS as 'universal'.
No matching downloadable found for platform: iOS
No downloadable was found for iOS.

下载完成后,实际上他直接帮我安装好了。我在下载目录没看到他。因此下面的步骤不需要了

使用xcodebuild安装下载的runtime image

  • 官方文档https://developer.apple.com/documentation/xcode/downloading-and-installing-additional-xcode-components#Install-downloaded-packages-from-the-command-line
shell 复制代码
xcodebuild -importPlatform "~/Downloads/iOS 27 beta Simulator Runtime.dmg"
相关推荐
编程范式1 天前
SwiftUI 中图片如何适配可用空间
ios
songgeb3 天前
启发式 UI 自动化:从线性剧本到每步读屏决策
ios·测试
壹方秘境7 天前
我用Go语言开发了一个跨平台的HTTPS抓包和调试工具
前端·后端·ios
初级代码游戏12 天前
easy Photo Clean公测版:快速清理iPhone照片 邀请公测
ios·iphone
库奇噜啦呼12 天前
【iOS】RunLoop学习
学习·ios
黑科技iOS上架12 天前
iOS应用周末提交什么情况算卡审
经验分享·ios
zzb158012 天前
ios基础-MVC-UIView
ios·mvc·cocoa
kingbal12 天前
Flutter:Flutter SDK版本管理工具FVM
android·flutter·ios·android-studio·window
他们都不看好你,偏偏你最不争气13 天前
【iOS】Runtime - Part 2 && 消息发送:缓存、查找与转发
macos·ios·objective-c·cocoa