I am interesting if it is possible to implement calls on macOS M chip?
When I use CXStartCallAction it opens FaceTime native app.
is it possible to use CallKit for macOS? Is there any other way how can we do it?
Post
Replies
Boosts
Views
Activity
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)
}
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.