Reputation: 1103
Using XCode 6.3.1 , SDK 8.3
Suddenly my app stopped running in (any) simulator and Xcode throws error
The operation couldn’t be completed. (OSStatus error -600.)
Tried cleaning, reset content and setting and even restarting my Mac.
Is there anything I can do to run my app in simulator.
Upvotes: 22
Views: 21658
Reputation: 567
Upvotes: 3
Reputation: 2092
Some LSApplicationQueriesScheme do not work on Simulator. So run it on iPhone device. This worked for me.
Upvotes: 0
Reputation: 361
Solved it just by restarting the computer. Don't know what it means, but it can be fixed that way! Cheers
Upvotes: 1
Reputation: 2396
Just quit your iOS Simulator then reopen the simulator then build your source Now it will work.
Upvotes: 26
Reputation: 5760
The error code says procNotFound
. What helped me was simply to reset simulator content and settings, then close it and try to run the project again.
Upvotes: 0
Reputation: 1459
I encountered this issue on a 9.1 simulator. I was able to successfully run my app after doing a CLEAN, switching to an 8.4 simulator, compiling (successfully) and then switching back to 9.1 and running.
Upvotes: 2