this function is called automatically when quit application..but in my application this function cannot called automatically
this function is called automatically when quit application..but in my application this function cannot
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This method is only called on your
ApplicationDelegateinstance so is this where you put your code?If you need to be notified of when your application enters background outside of the ApplicationDelegate you can register with
NSNotificationCenter.This will work in any class, but you obviously need to create the method
enteredBackgroundor whatever you call it 🙂