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
}