显示/解码收到的聊天消息 XMPP 框架 ios

发布于 2024-11-05 20:28:22 字数 359 浏览 4 评论 0原文

我能够向通过 XMPPframework IOS 选择的特定人员发送消息。我正在接收其他人发送给我的消息,我可以在以下方法中看到使用 NSLog 。

- (void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message

我已经经历过我想知道的是,XMPP 中是否有任何方法可以直接解码收到的聊天消息?即像 If

- [message getChatMessage]; 

或者我们需要自己实现?即解码接收到的XML并获得需求元素字符串。

如果有人知道请分享一下。

I am able to send Message to specific Person selected through XMPPframework IOS. I am receiving messages from others sent to me and I can see using NSLog in following method.

- (void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message

I have gone through What I want to know is, if any method available in XMPP to directly decode received chat message ? i.e. like If

- [message getChatMessage]; 

Or we need to implement on our own ? i.e decoding received XML and get requirement element string.

Please share if any one knows.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风轻花落早 2024-11-12 20:28:22

嗯,例如,您可以通过执行以下操作来获取消息正文:

NSString *body = [[message elementForName:@"body"] stringValue];

可以像这样找到其他标签的值。 XMPP 使用 XML 来构造其数据,因此 elementForName: 和 attributeForName: 方法应该为您提供所需的数据。

Well, you can get, for example, the body of the message by doing this:

NSString *body = [[message elementForName:@"body"] stringValue];

The values for other tags can be found like this. XMPP uses XML to structure its data, so the elementForName: and attributeForName: methods should give you the data you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文