Posts

Post not yet marked as solved
1 Replies
480 Views
When I am receiving incoming call I need to update localizedCallerName in CallKit, all works good with other iPhone models, but with new iPhone 14 (device with dynamic Island) localizedCallerName is not changed. Is there anything I should specify to update the name with new iPhone? Looks like the problem is related to CXCallUpdate() This is the code I use for updating caller name: func updateCall(_ call: Call) { let update = CXCallUpdate() update.remoteHandle = call.otherParty.cxHandle update.localizedCallerName = call.otherParty.localizedCallerName update.hasVideo = false cxProvider.reportCall(with: call.uuid, updated: update) }
Posted
by lockSee.
Last updated
.
Post not yet marked as solved
1 Replies
1.1k Views
Does anybody knows how to show or enable message button in CallKit screen when user receives incoming call? I tried to search multiple sources but I couldn't find any information about this topic. It never appears in my CallKit app. I can only see Remind Me button.
Posted
by lockSee.
Last updated
.