0

I am creating a game in Xcode-6-GM-Seed and am having an issue that the home button is not showing up in the simulator.

I need to be able to press the home button to be able to quickly delete the app from the phone but am not seeing the home button.

How do I get around this? Is there some sort of command to use or do I need to do it programmatically until they add the home button? Is there another way to delete the app and it's content?

Image of the Simulator:

Wyetro
  • 8,439
  • 9
  • 46
  • 64

2 Answers2

9

Use Command + Shift + H for pressing Home button.

You can also choose "Reset Content and Settings" to erase the App.

Sverrisson
  • 17,970
  • 5
  • 66
  • 62
2

As mentioned above, shift+command+h is how you should trigger the home button to get to SpringBoard.

If you need to uninstall an app, you can also do that from the command line via simctl:

xcrun simctl uninstall booted com.mycompany.myapp

Jeremy Huddleston Sequoia
  • 22,938
  • 5
  • 78
  • 86