gpt4 book ai didi

iphone - 通过 iOS 版 XMPPFramework 发送消息

转载 作者:行者123 更新时间:2023-12-03 18:38:19 24 4
gpt4 key购买 nike

如何通过 objc 和 ios 的 XMPPFramework 发送消息?

现在真的很困扰我。我需要使用一些自定义 XML 构建自定义方法并将其发送到特定的 JID。

有什么想法吗?

谢谢。

最佳答案

NSXMLElement *body = [NSXMLElement elementWithName:@"body"];
[body setStringValue:textvalue];

NSXMLElement *message = [NSXMLElement elementWithName:@"message"];
[message addAttributeWithName:@"type" stringValue:@"chat"];
[message addAttributeWithName:@"to" stringValue:[jid full]];
[message addChild:body];

[[self xmppStream] sendElement:message];

试试这个

关于iphone - 通过 iOS 版 XMPPFramework 发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4460823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com