多个模拟器问题

xcode模拟器都这样显示,没办法判断是哪个系统

解决的方法:

1.关闭xcode

2.终端输入 sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService 输入你的电脑密码

3.终端输入 rm -rf ~/Library/Developer/CoreSimulator/Devices


有时候使用xcode7的playground功能时会出现提示:Unable to find execution service for selected run destination,并且无法显示playground语句执行的结果。

解决的方法:

1.关闭Xcode

2.在终端里执行两行代码:

rm -rf ~/Library/Developer/CoreSimulator/Devices

killall -9 com.apple.CoreSimulator.CoreSimulatorService

再次打开Xcode,playground就可以执行了。

你可能感兴趣的:(多个模拟器问题)