在iOS应用程序终止之前暂停主执行

时间:2013-02-06 06:03:06

标签: ios terminate home-button

当我按下主页按钮时,如何让我的应用暂停几秒钟来调用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
}

1 个答案:

答案 0 :(得分:0)

你不能,但你也不需要。你的应用程序在真正进入后台之前就完成了aMessage,此时你不再执行任何代码了。