Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Since iPhone 4 do takes the application to background thread, Is there a way to quit the application so that it is not in the background ? can we have a exit button in the screen ???

share|improve this question
possible duplicate of iPhone 4 app doesn't terminate – Brad Larson Aug 17 '10 at 17:26

2 Answers

up vote 2 down vote accepted

From the iOS Application Programming Guide:

If you do not want your application to remain in the background when it is quit, you can explicitly opt out of the background execution model by adding the UIApplicationExitsOnSuspend key to your application’s Info.plist file and setting its value to YES. When an application opts out, it cycles between the not running, inactive, and active states and never enters the background or suspended states. When the user taps the Home button to quit the application, the applicationWillTerminate: method of the application delegate is called and the application has approximately five seconds to clean up and exit before it is terminated and moved back to the not running state.
share|improve this answer

If you specifically want an exit button, just call exit(0); when it's touchUpInsided.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.