如何通过XMPPFramework为objc和ios发送消息?
现在真的很烦我。我需要使用一些自定义XML构建自定义方法并将其发送到特定的JID。
有什么想法吗?
谢谢。
答案 0 :(得分:13)
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];
试试这个