3

目前,对于处于后台模式的我的 Voip 应用程序,我使用下面的代码,当我的 voip 应用程序进入后台或进入后台时保持唤醒并在呼叫到达时锁定手机,它会显示通知。我看到在 IOS 8 和更高版本中 setKeepAliveTimeout不再工作了,我们需要使用 Pushkit,有没有在不编码我们的服务器端的情况下使用 pushKit?

- (void)registerKeepAliveHandler:(UIApplication*) application
{
    LogInfo(TAG_MAIN, @"Registering KeepAliveTimeout");
    [application setKeepAliveTimeout:600 handler:^{
        [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_KEEPALIVE_RECEIVED object:nil];
        NSMutableString* statusStr = [[NSMutableString alloc] init];
        switch ([[UIApplication sharedApplication] applicationState]) {
            case UIApplicationStateActive:
                [statusStr appendString:@"foreground"];
                break;
            case UIApplicationStateInactive:
                [statusStr appendString:@"inactive"];
                break;
            case UIApplicationStateBackground:
                [statusStr appendString:@"background"];
                break;
            default:
                assert(0);
                break;
        }
        LogInfo(TAG_MAIN, @"===================================== Keepalive received in %@ application status ===============================", statusStr);
        [UIApplication getIPAddress];
        LogInfo(TAG_MAIN, @"%@", [[UIDevice currentDevice] batteryInfo]);
        [[SipEngine sharedInstance] isServerReachable];
        [[SipEngine sharedInstance] isRegistered];
        [[SipEngine sharedInstance] startStopRegistration];
        [[[SipEngine sharedInstance] registration] registering];
    }];

}
4

2 回答 2

1

如果您想在终止状态下运行您的应用程序以了解来电并进行进一步处理,那么您应该使用 Push kit 静音通知。(这种方式 Whatsapp 通话,Skype 等应用程序工作)

参考

#import "AppDelegate.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {


    pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
    pushRegistry.delegate = self;
    pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];

    return YES;
}

#define PushKit Delegate Methods

- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type{
    if([credentials.token length] == 0) {
        NSLog(@"voip token NULL");
        return;
    }

    NSLog(@"PushCredentials: %@", credentials.token);
}

- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type
{
    NSLog(@"didReceiveIncomingPushWithPayload");
}


@end

基于 puskit payload 安排本地通知的方法

于 2017-06-02T14:22:54.247 回答
0

继续前进,必须在 iOS 中使用 Pushkit for Background (BG) Voip 应用程序,因为它将在 iOS 11 中完全弃用 Voip BG 套接字。(我认为他们已经弃用了 iOS 10 SDK 中的支持,但 iOS 10 与 SDK 一起使用9)

要回答您的问题,不,您需要在服务器端实现 APNS 接口以与 Apple 的 APNS 云通信,以便您的应用程序可以通过 Apple 接收用于 Voip 呼叫等的 VOIP 推送。另外,请注意,如果 BG 中的 VOIP 应用程序处于封闭网络(无互联网)中,则它们将不再适用于 iOS,因为 APNS 接口对于向使用 Pushkit 的应用程序提供 Voip 推送是必需的。

于 2017-06-02T13:22:10.223 回答