シンプルな VoIP アプリを開発していますが、その仕組みを理解するのに苦労しています。ここに私の AppDelegate.m があります
#import "AppDelegate.h"
#import "ViewController.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil];
} else {
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil];
}
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
// Set-up scheduled background check-in.
[[UIApplication sharedApplication] setKeepAliveTimeout:600 handler:^{
//do your task
NSLog(@"startingKeepAliveTimeout");
}];
return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application
{
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Set-up scheduled background check-in.
[[UIApplication sharedApplication] setKeepAliveTimeout:600 handler:^{
//do your task
NSLog(@"startingKeepAliveTimeout");
}];
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
[[UIApplication sharedApplication] clearKeepAliveTimeout];
NSLog(@"stoppingKeepAliveTimeout");
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
}
- (void)applicationWillTerminate:(UIApplication *)application
{
}
@end
シミュレーターと接続されたデバイスの両方で私が見ている問題は、アプリを起動すると NSLog(@"stoppingKeepAliveTimeout"); が表示されることです。applicationWillEnterForeground: メソッドから実行されていますが、 NSLog(@"startingKeepAliveTimeout"); は表示されません。アプリが最初に起動されたとき、または applicationDidEnterBackground から実行されたときのいずれか:
キープアライブが実際に機能しているか、呼び出されているかを確認するにはどうすればよいですか?