通过XMPPFramework for iOS发送消息

时间:2010-12-16 12:38:49

标签: iphone cocoa-touch xmppframework

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

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

有什么想法吗?

谢谢。

1 个答案:

答案 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];

试试这个