TAGS :Viewed: 6 - Published at: a few seconds ago

[ Hide/Minimize app on button tap ]

In my app I want to minimize/hide my app when user presses an button. It it possible to hide or minimize app on UIButton tap? If so, how?

Answer 1


No, that's not possible. You can put all kinds of functionality on UIButton clicks, but returning to the home screen is not a functionality that is available. Going back to the home screen after an action within the app could be interpreted as a crash.

This is what the home button is there for after all.