views:

37

answers:

1

I have a problem with my iPhone simulator. Since yesterday when I press Build and run.

  • Xcode builds the project
  • Simulator closes the running app
  • Simulator opens the running app in same state as it closed (multitasking?)

The old build keeps running, I have to quit the simulator before i can run the new build. I tried cleaning the project, tested with a new project. Same problem. Rebooted everything.

Running Xcode 3.2.4 / 4.1 SDK.

A: 

I added a Run Script to my target to work arround the issue

killall -9 "iPhone Simulator"

Not a proper fix, but works for now.

Sander Backus