Questions tagged [callkit]

CallKit is a framework for iOS that lets VoIP apps integrate with the iPhone UI, and has app extensions that enable call blocking and caller identification.

The CallKit framework (CallKit.framework) lets VoIP apps integrate with the iPhone UI.

CallKit can be used to

  • let users view and answer incoming VoIP calls on the lock screen
  • manage contacts from VoIP calls in the Phone app’s Favorites and Recents views
  • call blocking
  • caller identification

Quick References

650 questions
-1
votes
1 answer

Callkit in ios 10.0

NSArray *arr=[[NSArray alloc]initWithObjects: @"+918801234567",@"+ 918801234568", nil]; how to pass arr to CXCallDirectoryPhoneNumber phoneNumbers[]
-1
votes
1 answer

how to authorize callkit in xcode8 beta 6

How to authorize callkit, CXProvider.authorizationStatus is not avilable in latest version of xcode8 beta. let cxpor = CXProvider(configuration: conf) cxpor?.setDelegate(self, queue: DispatchQueue.main)
Madhu
  • 994
  • 1
  • 12
  • 33
-2
votes
1 answer

why class prefixes are still followed in apple's latest frameworks

Coming from high-level languages like Visual C, C#, Java, ActionScript where packages are a common and basic thing since their inception, and there were many scalability issues around name collisions and I always thought objective-c as the language…
user2727195
  • 7,122
  • 17
  • 70
  • 118
-3
votes
1 answer

iOS: Is it possible to programmatically disconnect a call?

Is it possible to disconnect a call programmatically? I know call kit can be used to make VOIP calls/ block users but is it possible to install an app and lets say user is busy and just by enabling a flag in the app just send them all to voicemail…
TheDeveloper
  • 1,127
  • 1
  • 18
  • 55
-4
votes
1 answer

iOS - How can the VoIP call screen be configured? Is it possible?

I am working on an iOS VoIP app, and i've noticed that, apart from setting up the app's logo, there is not much configuration allowed for the call screen as CallKit uses the iOS default one. So i was curious on how does RoboKiller accomplish to show…
1 2 3
43
44