The official discussion of the related issue is in the Apple forums , but people confuse the two issues because they have similar characteristics.
The current El Capitan Beta has an error that causes problems loading dyld_sim from older versions of iOS Simulator in El Capitan.
Previous versions of El Capitan Beta had a different error, due to which the CoreSimulatorService crashed (and thus limited the availability of the simulator) if you had outdated battery life in / Library / Developer / CoreSimulator.
The workaround discussed at the forum will work on both issues:
sudo xcode-select -s /path/to/Xcode-beta.app [[ -d /Library/Developer/CoreSimulator ]] && sudo mv /Library/Developer/CoreSimulator{,.bak} sudo mv $(xcrun
An update to Xcode in the future will โundoโ the change to Xcode.app. The latest Xcode.app error released after the beta version of El Capitan is not affected by this error.
In the future, after the new beta version of El Capitan is released and you are updated, you will want to restore / Library / Developer / CoreSimulator if you put it aside:
[[ -d /Library/Developer/CoreSimulator.bak ]] && sudo mv /Library/Developer/CoreSimulator{.bak,}
source share