私の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
は?
知っている人がいたら、答えを教えてください。
前もって感謝します!