Reputation: 723
I'm having the aforementioned problem with my app. It happens whether I use the simulator or an iOS device. Basically, I will close the app, double-click the home button to bring up the recent apps, and remove my app from there. Right after I do that in the simulator, Xcode comes into focus with this:
When I click on the app icon to launch the app again, the simulator/device freezes and does not respond to home button clicks.
I'm not sure why this happens at all. Is there something I must do when the user kills the app from the recent apps? Please enlighten me.
Thank you in advance!!!
Upvotes: 0
Views: 78
Reputation: 535306
You are forcibly killing the app in the device/simulator while it is still running in Xcode. Xcode doesn't like that. So don't do that. But it doesn't indicate anything about your app when it is out in the field; the problem arises only because the app was launched through Xcode, and that is not how the user is going to run it.
Upvotes: 1