Reputation: 865
Using Xcode Version 8.1, Swift 3
I am trying to test my app's data persistence. So I close the app in the simulator by ⌘+⇧+H (double tapped), and then slide up the app to close it. But the Xcode crashed with "Thread 1: signal SIGKILL".
How do I close app in the simulator and can still open the app in the simulator after I close it.
Upvotes: 1
Views: 907
Reputation: 318824
Xcode is not crashing. Xcode is showing that your app has terminated due to being force terminated by the user. This happens when you force-terminate an app while debugging. This happens in either simulator or with a real device.
Simply tap the "stop" button in the debugger. You can then run the app again like your normally do.
Upvotes: 2