-
Xcode 15 以后的安装包的大小相比之前更小,因为除了 macOS 的 Components,其他都需要动态下载安装,否则提示 iOS xx Simulator Not Installed。
image.png -
如果不安装对应的运行模拟库 无法真机和模拟器运行,更无法新建项目。直接使用Xcode下载、在国内很容易下载失败、然后再重新下载,所以推荐使用手动下载方式:
- 去官网下载对应的Simulator.dmg
示例.png - 双击 iOS_xx_Simulator_Runtime.dmg 文件,等待打开后,逐层找到 Runtimes 文件夹。
- 前往 Xcode的Simulator管理文件夹
终端
open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles
或者
command+shift+G
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles
或者
选择 Xcode App,然后右击选择 显示包内容,通过 Contents —> Developer —> Platforms —> iPhoneOS.platform —> Library —> Developer —> CoreSimulator,找到 Profiles 文件夹。
4.将第 2 步的 Runtimes 文件夹拷贝到第 3 步的 Profiles 文件夹中。
5.重启Xcode即可
网友评论