安装xcode6 beta 后调试出现Unable to boot the iOS Simulator以及编译苹果官方Swift的demo报错failed with exit code 1的解决办法

时间:2023-01-30 20:14:59

苹果昨天发布新语言Swift(雨燕),需要安装xcode6 以及mac os 系统为10.9以上。

(xcode6 beta 可在官方下载,需要登录开发者账号;mac os 系统直接更新即可。在此就不具体说明了)

在安装完毕后,打开xcode6,新建一个项目,编译正常,但运行却出错。模拟器无法正常启动(黑屏),xcode弹出Unable to boot the iOS Simulator。

重装xcode6,重启后依旧报错。

后来在苹果官方下载专门演示swift的demo,编译时出错:

iPhone Developer: Kyo Wang (BYF23C3XAC):ambiguous (matches"iPhone Developer: Kyo Wang(BYF23C3XAC)"in/Users/km-cn/Library/Keychains/login.keychain and "iPhoneDeveloper:Kyo Wang (BYF23C3XAC)" in/Library/Keychains/System.keychain)

Command/usr/bin/codesign failed with exit code 1

原来是在安装xcode6的时候不知道怎么的开发者证书被复制并安装了,所以导致重复的开发者账号。打开keychain--login,把里面重复的开发者证书删除。

安装xcode6 beta 后调试出现Unable to boot the iOS Simulator以及编译苹果官方Swift的demo报错failed with exit code 1的解决办法

重新编译并运行官方demo,通过。

重新编译并运行自己新建的项目,通过。