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(...);
}