4

我正在努力audio/video call并尝试让来电notification循环 1 分钟,就像 WhatsApp 在iOS应用程序为背景时显示的那样,Notification banner隐藏并显示铃声 1 分钟。

我试过这段代码,它只触发一次:

 UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init];
    content.title = [NSString stringWithFormat:@"Video Call from %@",userId];
    content.body = @"";
    content.userInfo = [userInfo mutableCopy];
    content.sound = [UNNotificationSound soundNamed:@""];

    NSDate *now = [NSDate date];
    now = [now dateByAddingTimeInterval:3];
    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
    [calendar setTimeZone:[NSTimeZone localTimeZone]];

    NSDateComponents *components = [calendar components:NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay|NSCalendarUnitHour|NSCalendarUnitMinute|NSCalendarUnitSecond|NSCalendarUnitTimeZone fromDate:now];

    UNCalendarNotificationTrigger *trigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:components repeats:NO];
    UNNotificationRequest * request = [UNNotificationRequest requestWithIdentifier:@"INCOMING_VOIP_APN" content:content trigger:trigger];

    UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    center.delegate = self;
    [center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        if (!error) {
            NSLog(@"PUSHKIT : INCOMING_VOIP_APN");
        }
    }];

我怎样才能做到这一点?我正在使用UserNotifications.framework (iOS 10)PushKit

4

2 回答 2

2

iOS 10 CallKit 好多了,没有通知,只有系统调用 UI,就像原生调用一样。Github 上有一些示例代码,比苹果的 Speakerbox 示例更容易阅读。

于 2017-02-20T07:24:17.013 回答
2

我的建议是本地通知仅在该特定时间可见。您需要做的是在通话时设置本地通知或通知。当通知触发时,在通知的委托方法中,您必须在NSTimer的帮助下构建自定义逻辑。

创建一个类似于推送通知的视图/或要为呼叫显示的视图。将其添加到应用程序窗口,使其显示在所有视图的顶部。3 秒后删除此视图,在逻辑中您可以显示相同的视图 1 分钟。

于 2017-02-01T02:55:06.690 回答