我想获得接收者的存在(在线/离线)。我正在使用 XMPPFramework 和 Openfire 服务器发送聊天。但是当应用程序被杀死时,XMPP 不会保持连接,因此用户会离线。所以,我希望向离线用户发送推送通知。
// If user is online
NSXMLElement *message = [NSXMLElement elementWithName:@"message"];
[message addAttributeWithName:@"type" stringValue:@"chat"];
[message addAttributeWithName:@"to" stringValue:chatWithUser];
[message addChild:body];
[self.xmppStream sendElement:message];
// Else when user is offline
// Method for push notification
我怎样才能得到接收者的存在?