How to stop running iphone app in background in iphone sdk 4.0 and above
Please tell me some solution for how to stop app at background when we close the app in iphone sdk 4.0 a开发者_运维百科nd above.
can any one provide me some sample code for it.
Thanks, Priyanka
Set the UIApplicationExitsOnSuspend
key in your app's Info.plist to YES
.
This will make the app quit when you press the home button, instead of being backgrounded.
精彩评论