ios simulator: how to close an app

XcodeIos7Ios6Ios SimulatorSimulator

Xcode Problem Overview


When you "run" the simulator from xCode, the app automatically launches, and then you can click the home button to suspend the app. What I want to do is close the app from within the simulator. So, how can this be done?

Xcode Solutions


Solution 1 - Xcode

You can also do it with the keyboard shortcut shown under the simulator menu bar (Hardware-> Home).

The shortcut is ++H, but you need to hit H twice in a row for it to simulate the double press that shows the apps.

Solution 2 - Xcode

For iOS 7 & above:

  • shift+command+H twice to simulate the double tap of home button
  • swipe your app's screenshot upward to close it

You'll see screenshots representing the apps suspended on your device - those screenshots respond to touch events. Swiping is the gesture you'll make to "fling" the screenshot off of the screen. Note that on machines where your mouse is intended to represent your finger, you'll click and swipe as if it is your finger tapping and making the gesture.

Solution 3 - Xcode

On the new iPhone X, the simulator was having issues with the mouse/finger gesture.

You can do a long press with the mouse and a close icon will appear. You can use the swipe up gesture as well to close the app.

close app on simulator

Solution 4 - Xcode

I had a difficult time in finding a way in XCode 7.2, but finally I had found one. First press Shift+Command+ H twice. This will open up all the apps that are currently open.

Swipe left/right to the app you actually want to close. Just Swipe Up using the Touchpad while Holding the App would close the app.

Solution 5 - Xcode

Window / Show Device Bezels

And now you can see the real device, so double tap on HOME button and kill you app

Solution 6 - Xcode

You can use this command to quit an app in iOS Simulator

xcrun simctl terminate booted com.apple.mobilesafari

You will need to know the bundle id of the app you have installed in the simulator. You can refer to this link

Solution 7 - Xcode

For closing (not quit) the running application in Simulator the keyboard shortcut is "shift+command+h".

Solution 8 - Xcode

Command + shift +h Press H 2 times

Note :- Press H 2 times

Solution 9 - Xcode

Double click on the home button and then click and hold the icon like a normal phone and then click close I believe.

Solution 10 - Xcode

Easy way, just click on "Device" menu then select "App Switcher".

Solution 11 - Xcode

You can also kill the app by process id

ps -cx -o pid,command | awk '$2 == "YourAppNameCaseSensitive" { print $1 }' | xargs kill -9

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionChicowitzView Question on Stackoverflow
Solution 1 - Xcodelehn0058View Answer on Stackoverflow
Solution 2 - XcodeChicowitzView Answer on Stackoverflow
Solution 3 - XcodeRay HunterView Answer on Stackoverflow
Solution 4 - XcodeArchit KapoorView Answer on Stackoverflow
Solution 5 - XcodemattView Answer on Stackoverflow
Solution 6 - XcodeRishabh AryaView Answer on Stackoverflow
Solution 7 - XcodeTulonView Answer on Stackoverflow
Solution 8 - XcodeKeshav GeraView Answer on Stackoverflow
Solution 9 - XcodeTonyView Answer on Stackoverflow
Solution 10 - XcodeJerry SamView Answer on Stackoverflow
Solution 11 - XcodeÖzgür OdabaşıView Answer on Stackoverflow