reloadExtensionWithIdentifier无效

时间:2016-09-22 11:59:52

标签: blocking ios10 callkit

当我尝试添加其他号码来调用目录扩展名时。它没有添加,我从文本提取数字,我尝试使用以下方法添加该号码来调用目录扩展。

[contextIs addBlockingEntryWithNextSequentialPhoneNumber:phoneNumber];

之后我打电话给下面的方法。

[contextIs completeRequestWithCompletionHandler:nil];

[[CXCallDirectoryManager sharedInstance] reloadExtensionWithIdentifier:@“com.something.something.CallIDExtension”completionHandler:^(NSError * error){         if(错误!=无){             NSLog(@“错误是%@”,[错误描述]);         }     }];

但这不是在开玩笑。我认为reloadExtensionWithIdentifier没有将数字更新为字典或我正在做错了...

1 个答案:

答案 0 :(得分:0)

我从你的问题中得到了想法,所以我在ViewController上添加了reloadExtension,它确实有效! 非常感谢你。