当我按下主页按钮时,如何让我的应用暂停几秒钟来调用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
}
答案 0 :(得分:0)
你不能,但你也不需要。你的应用程序在真正进入后台之前就完成了aMessage
,此时你不再执行任何代码了。