How can I make my app pause for a couple of seconds to invoke a message inside applicationDidEnterBackground
when I hit the home button? For example:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[self.delegate aMessage];
// Pause for a couple of seconds to give aMessage time to finish
// Continue execution after 2 seconds
}