Why aren't simulators showing in the Xcode 6.3.1 scheme selector?

大城市里の小女人 提交于 2019-12-03 22:15:43

This can happen if you renamed or moved Xcode.app. Try renaming it back to what it was before or rebooting. If that doesn't address the issue, your should look at 'xcrun simctl list' and ~/Library/Developer/CoreSimulator/Devices to see if you have any devices.

Also check out ~/Library/Logs/CoreSimulator for any error logs.

From the added logging and information provided, the issue is that you had iOS 8.3 devices created for you at some point (that is why the UUIDs appear in the . default_created.plist file), but their device.plist files got deleted, so the system is (correctly) no longer listing them.

I'm not sure how the device.plist files got deleted from your system, but you can go back to a vanilla state with:

sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService
rm -rf ~/Library/*/CoreSimulator

Try This...
1.Run the simulator from application(Or from spotlight)
2.Hardware ----> Device---> Manage Device.
3.A popup will open, in that screen bottom left corner you will find "+" use + for adding new simulators for different ios versions

In my case, I downloaded simulators of version iOS 8.2 and in project iOS deployment target was higher than downloaded version so it was not showing, once you will change it lower than downloaded version it will start to show. Please, let me know if you are facing any issue.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!