在xmpp ios中向离线用户发送好友请求和消息

时间:2015-01-27 13:04:59

标签: ios xmpp openfire

我正在使用openfire服务器在XMPP项目中工作。 我想向离线用户发送好友请求和消息。

我可以通过以下代码将好友请求和消息发送给在线用户: -

- (XMPPRoster *)xmppRoster {
    return [[self appDelegate] xmppRoster];
}

-(IBAction)SendFriendRequest:(id)sender
{
    XMPPJID *newBuddy = [XMPPJID jidWithString:@"test1@192.168.4.21"];

    [[[self appDelegate]xmppRoster]addUser:newBuddy withNickname:@"test user 1"];
}

0 个答案:

没有答案