2

当我尝试将其他号码添加到呼叫目录分机时。它没有添加,我从文本字段中获取号码,我尝试使用以下方法将该号码添加到呼叫目录分机。

[contextIs addBlockingEntryWithNextSequentialPhoneNumber:phoneNumber];

之后我调用下面的方法。

[contextIs completeRequestWithCompletionHandler:nil];

[[CXCallDirectoryManager sharedInstance] reloadExtensionWithIdentifier:@"com.something.something.CallIDExtension" completionHandler:^(NSError *error){ if(error!=nil) { NSLog(@"error is %@",[error description]); } }];

但它没有醒来。我认为 reloadExtensionWithIdentifier 没有将数字更新到字典或我做错了什么......

4

1 回答 1

0

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

于 2016-09-30T05:27:41.740 回答