2

我正在尝试将 CallKit 集成到我的 Voip 应用程序中。我参考了 Apple WWDC 中的 SpeakerBox 示例代码。reportNewIncomingCall我创建了一个 ProviderDelegate 类,我可以在调用方法后看到来电 UI 。

但是当我点击“回答”/“结束”按钮时,相应的提供者代表不会被解雇。这里有什么问题?

请注意,providerDidBegin当我实例化CallProviderDelegate.

@implementation CallProviderDelegate

- (instancetype)init
{
    self = [super init];
    if (self) {
        _providerConfiguration = [self getProviderConfiguration];
        _provider = [[CXProvider alloc] initWithConfiguration:_providerConfiguration];
        [_provider setDelegate:self queue:nil];
    }
    return self;
}

- (void)providerDidBegin:(CXProvider *)provider {
   // this is getting called
}

- (void)provider:(CXProvider *)provider performAnswerCallAction:(CXAnswerCallAction *)action {
  // this is not getting called when the Answer button is pressed
}

- (void)reportNewIncomingCallWithUUID:(nonnull NSUUID *)UUID handle:(nonnull NSString *)handle
                           completion:(nullable void (^)(NSError *_Nullable error))completion {

    CXCallUpdate *update = [[CXCallUpdate alloc] init];
    update.remoteHandle = [[CXHandle alloc] initWithType:CXHandleTypePhoneNumber value:handle];
    update.hasVideo = NO;

    [_provider reportNewIncomingCallWithUUID:UUID update:update completion:^(NSError * _Nullable error) {
        completion(error);
    }]; 
}

在调用者类中:

CallProviderDelegate *providerDelegate = [[CallProviderDelegate alloc] init];
[providerDelegate reportNewIncomingCallWithUUID:[NSUUID UUID] handle:@"Raj" completion:^(NSError * _Nullable error) {
            //
 }];
4

1 回答 1

2

在您的“调用者”类中,即实例化CallProviderDelegate类并将其分配给providerDelegate变量的代码中,您是否将providerDelegate对象引用存储在实例变量或属性中?如果它只是被分配给一个临时局部变量,那么CallProviderDelegate对象将在调用方法完成执行后被释放,如果CallProviderDelegate对象被释放,则不会再传递 CXProvider 委托消息。

我会先检查您的CallProviderDelegate对象是否被意外释放。

于 2016-10-16T18:45:53.250 回答