riyaz
riyaz

Reputation: 1103

The operation couldn’t be completed. (OSStatus error -600.) Cant run app in simulator

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

Answers (6)

Monir Khlaf
Monir Khlaf

Reputation: 567

  • if you run on the simulator -> relaunch the simulator
  • if you run on real device -> reconnect the device

Upvotes: 3

Manish Mahajan
Manish Mahajan

Reputation: 2092

Some LSApplicationQueriesScheme do not work on Simulator. So run it on iPhone device. This worked for me.

Upvotes: 0

mavesonzini
mavesonzini

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

abdul sathar
abdul sathar

Reputation: 2396

Just quit your iOS Simulator then reopen the simulator then build your source Now it will work.

Upvotes: 26

Mobile Developer
Mobile Developer

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

mobilecat
mobilecat

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

Related Questions