0

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
}
4

1 回答 1

0

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

于 2013-02-06T06:11:49.950 回答