Reputation: 1101
When I try to run my program, iOS Simulator goes black and displays this error:
Unable to boot the iOS Simulator.
When I click OK, Xcode shows this error:
Unable to run app in Simulator. An error was encountered while running (Domain = NSMachErrorDomain, Code = -300)
How I can I make it run again?
Upvotes: 2
Views: 1632
Reputation: 1482
Just Reset Content and Settings worked for me. Also clean the project once and build.
Upvotes: 0
Reputation: 81
If you've recently updated XCODE and possibly have more than one installation you may need to specify which XCode is being used via the command line.
sudo xcode-select -s /Applications/Xcode6-Beta4.app/Contents/Developer/
Upvotes: 0
Reputation: 1101
You probably are running two different instances of the iOS Simulator.
CMD+SHIFT+K
)Upvotes: 4