gpt4 book ai didi

iphone - XMPP框架: can I determine the online/offline status of a user at all?

转载 作者:行者123 更新时间:2023-12-03 20:26:11 26 4
gpt4 key购买 nike

如何使用 iPhone 版 XMPPFramework 确定用户是否在线/离线?

我有他们的 JID 等。有没有办法请求出席或其他什么?

谢谢。

最佳答案

您检查过 XMPPFramework 示例项目的源代码吗?

如果我没记错的话,这应该是相关的代码片段:

// Subscribe to the buddy's presence
//
// <presence to="bareJID" type="subscribe"/>

NSXMLElement *presence = [NSXMLElement elementWithName:@"presence"];
[presence addAttributeWithName:@"to" stringValue:[jid bare]];
[presence addAttributeWithName:@"type" stringValue:@"subscribe"];

[xmppStream sendElement:presence];

您的流委托(delegate)获得的回调应该是

- (void)xmppStream:(XMPPStream *)sender didReceivePresence:(XMPPPresence *)presence;

我假设您已经拥有 xmmpframework 源代码,如果没有,您可以在此处克隆存储库

hg clone https://xmppframework.googlecode.com/hg/ xmppframework

示例项目位于“Xcode”文件夹中。

关于iphone - XMPP框架: can I determine the online/offline status of a user at all?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4960037/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com