我正在尝试创建一对一的通道连接,但是我无法弄清楚创建 SDBUser 的格式。我正在执行以下操作来尝试创建频道。
SBDGroupChannel.createChannelWithUsers([("123456", "1234567"], isDistinct: true) { (channel, error) in
if error != nil {
NSLog("Error: %@", error!)
return
} else {
//this means that the channel was successfully created
print(channel)
//segue to the open chat view
//segue here DREW
}
}
这些字符串是出现在 SendBird 中的 ID。有一个错误,它期望 SDBUser 的类型,并得到字符串。
我尝试了以下方法来获取 SBDUser,但得到以下值
let user1 = SBDUserListQuery.init(userIds: ["123456"])
但是用户值是 SBDUserListQuery 类型,所以它仍然不起作用。
我无法在 SendBird 文档中找到解决方案