0

アプリがバックグラウンドでまだアクティブな状態 (つまり、完全に終了していない状態) で起動したかどうかと、通話後に再起動したときにアプリに異なる機能を持たせたいと考えています。可能?

私がstackoverflowで見つけた回答は、ほとんどが電話の後に再開する方法に関連していました。

編集: 2008 年付けのアップル フォーラムで、平均的な通話時間に基づいて控除を行うことを含むこの質問への回答を見つけました。

4

1 に答える 1

1

appdelegate には、実行中のアプリで呼び出される 2 つのメソッドがあり、たとえば電話がかかってきます。

- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

アプリが再びアクティブになると呼び出されます。

- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

アプリがバックグラウンドにあったか、通話が開始されたときに実行されていなかった場合、電話が行われたかどうかを確認する方法はありません。

于 2012-07-03T08:44:35.077 に答える