I'm usinsg Version 7.0 beta 3 (7A152u), the latest, on my new macbook pro. It is running El Capitan 10.11 Beta (15A244d). Each time I try to build a newly created project or when I attempt to load a project created in the last version, xcode hangs.
Anybody else having this same problem?
Anyone found a workaround?
Thanks
There is a known incompatibility with Xcode running on the latest OS X El Capitan beta (build 15A244d). The following workaround will allow Xcode to run on this build until a future beta of El Capitan can be released to fix the issue.
Open Terminal.app and enter the following four lines (hitting RETURN after each line):
sudo xcode-select -s /path/to/Xcode-beta.app
[[ -d /Library/Developer/CoreSimulator ]] && sudo mv /Library/Developer/CoreSimulator{,.bak}
sudo mv $(xcrun --sdk iphonesimulator --show-sdk-path)/usr/lib/dyld_sim{,.bak}
sudo mv $(xcrun --sdk watchsimulator --show-sdk-path)/usr/lib/dyld_sim{,.bak}
You should reboot your Mac after making the above changes. In the future, after a new El Capitan beta is released and you have updated, you will need to put your Mac back into its normal state by rolling back the above change. To do that, you will need to launch Terminal.app and enter the following single line and hit RETURN:
[[ -d /Library/Developer/CoreSimulator.bak ]] && sudo mv /Library/Developer/CoreSimulator{.bak,}
Then reboot. Your system will then be in a standard state.