I'm start to using the CallKit to identify numbers. After many bug it's working, but I don't find a way to update a label after if changes. For now I know that works if I remove the identification and add it again calling the CXCallDirectoryManager.sharedInstance.reloadExtension two times (in the first time I remove and in the second I add the updated label for the same number).
Is it possible do that just with one call?
//to remove I'm using:
context.removeIdentificationEntry(withPhoneNumber: 1234567890)
//to add:
context.addIdentificationEntry(withNextSequentialPhoneNumber: 1234567890, label: "new label")