0

Is it possible to make the app not enter into the background running app list.

2 Answers2

0

You need to add

UIApplicationExitsOnSuspend

to your .plist file.

This will terminate your app when the home button is pressed, instead of sending it to the background. In other words, next time you'll hit the app icon then, the app will relaunch, instead of resuming from where it was when you left.

Here's a screenshot of my .plist:

enter image description here

h3r3b
  • 191
  • 2
  • 4
0

check out adding UIApplicationExitsOnSuspend to your apps pList

UIApplicationExitsOnSuspend anything else I'm missing?

Community
  • 1
  • 1
Jason Bugs Adams
  • 737
  • 1
  • 5
  • 11