我正在尝试将Quickblox集成到我现有的应用中, 根据文档,我已经完成了整个过程并完成了整合,并且它与文本聊天工作正常,
当涉及到SDK的音频和视频通话功能的集成时,我遇到了问题,在示例中,他们直接或手动添加了库,在我的项目中,我通过POD添加了相同的库。 / p>
由于缺乏文档,我无法理解他们在现有文档中提供的函数在哪里使用swift:
// 2123, 2123, 3122 - opponent's
let opponentsIDs = [3245, 2123, 3122]
let newSession =
QBRTCClient.instance().createNewSessionWithOpponents(opponentsIDs,
withConferenceType: QBRTCConferenceType.Video)
// userInfo - the custom user information dictionary for the call.
//May be nil.
let userInfo :[String:String] = ["key":"value"]
newSession.startCall(userInfo)
这是用于创建会话和调用用户的代码,但是我很难在哪里添加此代码,以便它适用于我的应用。
以下是他们提供的样本
https://github.com/QuickBlox/quickblox-ios-sdk/tree/master/sample-videochat-webrtc
提前致谢。