applicationDidEnterBackground
当我点击主页按钮时,如何让我的应用暂停几秒钟以调用内部消息?例如:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[self.delegate aMessage];
// Pause for a couple of seconds to give aMessage time to finish
// Continue execution after 2 seconds
}