我想在视频通话开始后在“最近的通话”记录中更新本地化的 call 者名称,如果用户在“最近的通话记录”中轻按该特定 call 者,它将再次从应用程序与 call 者连接。就像在imo和Google Duo中使用的一样。
最佳答案
仅供参考-以下代码是用Obj-C编写的,
要更新本地化的 call 者姓名:
CXCallUpdate *callUpdate = [[CXCallUpdate alloc] init];
callUpdate.remoteHandle = [[CXHandle alloc] initWithType:CXHandleTypeGeneric value:[NSString stringWithFormat:@"%@", phoneNumber]];
callUpdate.localizedCallerName = displayName;
[provider reportCallWithUUID:callUUID updated:callUpdate];
有关最近的通话记录,请参考this answer
关于ios - 如何在iOS的最近通话记录中更新视频通话,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47596634/