3

私のXCodeプロジェクトでは、以下のコードのようsetKeepAliveTimeoutにメソッドインメソッドを使用しました。applicationDidEnterBackground

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    [self performSelectorOnMainThread:@selector(keepAlive) withObject:nil waitUntilDone:YES];

    [application setKeepAliveTimeout:600 handler: ^{
    [self performSelectorOnMainThread:@selector(keepAlive) withObject:nil waitUntilDone:YES];
    }];
}

setKeepAliveTimeoutメソッドが非推奨であり、メソッドを使用したいことを示していますUIRemoteNotificationTypeVoip

メソッドを検索しましUIRemoteNotificationTypeVoipたが、十分な結果が得られません。そのメソッドのドキュメントさえdeveloper.apple.comありません。

問題:UIRemoteNotificationTypeVoipが使用されている場所を変更するにsetKeepAliveTimeoutは?

知っている人がいたら、答えを教えてください。

前もって感謝します!

4

1 に答える 1