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];
try it
harshalb
source share