在xcode iphone中使用XMPP的群聊室支持多用户聊天
我已经使用 xmpp 实现了一对一聊天。但是对于一对多用户,我尝试在“to”参数中传递一组收件人,它将我的消息发送给所有人,但无法接收他们的消息。如何使用 isGroupChatMessageWithBody 启用一对多聊天?
I have implemented the one to one chat using xmpp. But for one to multiple users I tried to pass an array of recipients in "to" parameter,it sends my message to all of them but cant receive their messages. How can I use isGroupChatMessageWithBody for enabling the one to multiple chat?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
isGroupChatMessageWithBody 不会按照您尝试使用它的方式工作。该方法根据消息是否属于群聊类型返回 BOOL。
isGroupChatMessageWithBody won't work the way you are trying to use it. It is a method that returns a BOOL based on whether or not the message is of type group chat.