ios - CallKit integtaion in my voip app -
i want details regarding block calls , identification using callkit framework
. there has done such work? have started little bit
cxproviderconfiguration * configuration = [[cxproviderconfiguration alloc] initwithlocalizedname:@"bitcall"]; cxprovider *callkitprovider = [[cxprovider alloc] initwithconfiguration: configuration]; [callkitprovider setdelegate:self queue:nil]; cxcallupdate *update = [[cxcallupdate alloc] init]; update.localizedcallername = @"ravadam patel"; [callkitprovider reportnewincomingcallwithuuid:[nsuuid uuid] update:update completion:^(nserror * _nullable error) { if (error) { nslog(@"error: %@", error); } }];
but not getting exact detail want.
Comments
Post a Comment