iOS PjSip - 后台工作

时间:2014-04-29 12:32:46

标签: ios backgroundworker pjsip

最近我必须用voip实现后台工作应用程序。为此,我使用PJSip。 现在,当app运行时,我已经完成了注册和处理呼叫的完美工作。

当应用程序进入后台时,前10分钟工作正常 - >捕获新的接收呼叫并作为本地通知发送 - 所以这很好。 10分钟后,sip停止工作,接到电话也没有到来。

你可以帮我这个吗?

我检查了“bacground working - VoiP” 我已经通过siphon2示例应用程序在pjsip中保持活着。

我也有:

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    [[PjSipService service] setIsInBackground:YES];
    // 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.
    int KEEP_ALIVE_INTERVAL = 600;

    [self performSelectorOnMainThread:@selector(keepAlive) withObject:nil waitUntilDone:YES];
    NSLog(@"startingKeepAliveTimeout1");

    [application setKeepAliveTimeout:KEEP_ALIVE_INTERVAL handler: ^{
        NSLog(@"startingKeepAliveTimeout2");

        [self performSelectorOnMainThread:@selector(keepAlive) withObject:nil waitUntilDone:YES];
    }];


    __block UIBackgroundTaskIdentifier bgTask;

    bgTask = [application beginBackgroundTaskWithExpirationHandler:^{
        [application endBackgroundTask:bgTask];
        bgTask = UIBackgroundTaskInvalid;
    }];


    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        //[self deregis];
        [application endBackgroundTask: bgTask]; //End the task so the system knows that you are done with what you need to perform
        bgTask = UIBackgroundTaskInvalid; //Invalidate the background_task

         NSLog(@"\n\nRunning in the background!\n\n");
    });
}

“keepAlive”功能为空。 我已经读过,对于这个函数,keepAlive是应该的 - 但是没有后台任务它甚至不会工作10分钟。

应用程序必须在iOS7和iOS6中运行

4 个答案:

答案 0 :(得分:1)

在后台运行的应用程序是使用IOS中的setKeepAliveTimeout方法执行的。但是从更高版本开始,不推荐使用setKeepAliveTimeout方法。

您想使用远程通知接收来电。特别是对于VOIP来电,Apple推出了Callkit框架。请在您的VOIP应用程序处于后台状态时,按照该框架接听来电。

https://www.raywenderlich.com/150015/callkit-tutorial-ios

答案 1 :(得分:0)

我正在处理具有相同要求的同一个项目,最近我遇到了同样的问题。我尝试了许多不同的解决方案,最后我发现了一些现在正在发挥作用

请注意,我最近找到了这个解决方案,我正在研究这个问题。至少目前我还没有考虑过这段代码的反应。

示例代码:

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    [self sipConnect];
    backgroundTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
        [self endBackgroundTask];
    }];
}

-(void) endBackgroundTask
{
    [[UIApplication sharedApplication] endBackgroundTask:backgroundTask];
    backgroundTask = UIBackgroundTaskInvalid;
}

答案 2 :(得分:0)

您可能使用UPD。为了确保您使用TCP,在设置注册器时,您需要指定类似这样的内容:ip_address:port; transport = tcp

答案 3 :(得分:0)

Apple已弃用keepAliveTimeoutHandler。要在applicationDidEnterBackground时接听电话,您必须使用PushKit框架。阅读文档以获取更多信息here