iPhone 上的 XMPP 还活着吗?

发布于 2024-09-05 12:26:32 字数 94 浏览 2 评论 0原文

我想使用 jabber/XMPP 实现 iphone 聊天客户端。谷歌存储库上的 XMPP 框架显示它已被贬值。有人知道 iPhone 版 xmpp 聊天客户端从哪里开始吗?

I want to implement chat client for iphone using jabber/XMPP. The XMPP framework on google repository shows that it is depreciated. Does someone knows where to start for xmpp chat client for iPhone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

那支青花 2024-09-12 12:26:32

正如 Jon Parise 提到的,XMPP 框架 Google 代码项目非常活跃。我亲自使用该框架编写了两个不同的 XMPP IM 客户端,它们在 iPhone 应用商店中被接受和销售。需要一些项目设置才能正常工作,您可以在链接站点周围找到这些项目设置。为了便于参考,我将所需的步骤(将 XMPP 框架源代码树添加到您的项目后)总结为:

//  In order to use the XMPP Framework on iPhone/iPad, need to:    
//  1. add libidn.a to Frameworks (found in libidn folder under XMPP/Vendor folder)
//  2. add libresolv.dylib to Frameworks
//  3. add CFNetwork.framework to frameworks
//  4. add SystemConfiguration.framework to frameworks
//  5. set up XCode to use libxml2: (for KissXML)
//     add "-lxml2" to "Other Linker Flags" under "Linking"
//     add "/usr/include/libxml2" to "Header Search Paths" under "Search Paths"

编辑 2013 年 5 月

正如 deepwinter 在评论中指出的那样,XMPP 框架移动了(相当长一段时间 )之前)到github。这些天从 https://github.com/robbiehanson/XMPPFramework 获取它。

As Jon Parise mentioned, the XMPP Framework Google Code Project is quite active. I have personally written two different XMPP IM clients using the Framework which are accepted and selling in the iPhone app store. It takes some project setup to get working right, which you can find scattered around the linked site. For easy reference, I have summarized the required steps (after adding the XMPP Framework source tree to your project) as:

//  In order to use the XMPP Framework on iPhone/iPad, need to:    
//  1. add libidn.a to Frameworks (found in libidn folder under XMPP/Vendor folder)
//  2. add libresolv.dylib to Frameworks
//  3. add CFNetwork.framework to frameworks
//  4. add SystemConfiguration.framework to frameworks
//  5. set up XCode to use libxml2: (for KissXML)
//     add "-lxml2" to "Other Linker Flags" under "Linking"
//     add "/usr/include/libxml2" to "Header Search Paths" under "Search Paths"

EDIT May 2013

As deepwinter points out in the comments, the XMPP Framework moved (quite a while ago) to github. Get it from https://github.com/robbiehanson/XMPPFramework these days..

虚拟世界 2024-09-12 12:26:32

Google 代码上的 xmppframework 项目似乎正在积极开发中。

The xmppframework project on Google Code appears to be under active development.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文