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.

i am developing server - client application. Data sync fro server and stored into local device and display.
Problem is when during the sync time i tap home button and again tap on application icon on springboard. now my application getting crashed. how continue last sync process when i tapped application icon on spring board.(when we press home button all process will stopped).

share|improve this question

1 Answer

up vote 0 down vote accepted
- (void)applicationDidBecomeActive:(UIApplication *)application;
- (void)applicationWillResignActive:(UIApplication *)application;

You should use above methods of UIApplicationDelegate. It will be called when your application changes its state. Store the necessary information at that time applicationWillResignActive and resume the operations in applicationDidBecomeActive when application becomes active.

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.