I have the following code - but i can't seems to find the API for CTCallJoinConference or any equivalent in order to create this conference call

static void callback(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo) 
{

NSString *IncomingNotification = [NSString stringWithFormat:@"%@", name]; 
NSDictionary *info = (__bridge NSDictionary*)userInfo;     
  if ([@"kCTCallStatusChangeNotification" isEqualToString:IncomingNotification])
   {
     NSLog(@"CAllStatus Changed");
    for (id obj in info) 
    {
         NSLog(@"%@ = %@",obj,[info objectForKey:obj]);
    }
    CTCall *call = (CTCall*) [info objectForKey:@"kCTCall"];

    NSString *state=[[info objectForKey:@"kCTCallStatus"] stringValue];  


    NSString *caller = CTCallCopyAddress(NULL, call);
    NSLog(@"CallerID = %@",caller);

    if ([state isEqualToString:@"1"])//connected  
    {

        NSLog(@"Call Established");

        //CTCallJoinConference(...);
    }
link|improve this question

53% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.