All Projects → GoBelieveIO → voip_ios

GoBelieveIO / voip_ios

Licence: BSD-3-Clause license
VOIP SDK

Programming Languages

objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language

#voip ios sdk

##运行demo 输入双方的uid, 一方呼叫, 一方接听

##信令通话的初始化参考im工程

##发起视频呼叫

    VOIPVideoViewController *controller = [[VOIPVideoViewController alloc] init];
    controller.currentUID = uid;
    controller.peerUID = peerUID;
    controller.peerName = @"";
    controller.token = token;
    controller.isCaller = YES;
    controller.channelID = channelID;

    [self presentViewController:controller animated:YES completion:nil];

##发起语音呼叫

    VOIPVoiceViewController *controller = [[VOIPVoiceViewController alloc] init];
    controller.currentUID = uid;
    controller.peerUID = peerUID;
    controller.peerName = @"";
    controller.token = token;
    controller.isCaller = YES;
    controller.channelID = channelID;

    [self presentViewController:controller animated:YES completion:nil];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].