为 iPad 编写自己的 RSS 阅读器之前的问题
这不是新主题,是一个关于 iPhone 的主题 ( iPhone RSS 阅读器< /a> )
我的目的是在 iPad 中实现 RSS 阅读器之前获取一些最新且有用的信息。(与 iPhone 相同,对吗?只有 GUI 差异?)
Apple 已经提供了 TopSongs 为例,它使用原生 NSNetwork 和 XML 解析器等。
ASIHttpRequest 还提供了下载 RSS xml 的良好功能数据并使用 cocoa-rss 来解析它。就像 使用 ASIHttpRequest 和 cocoa-rss 在 iPhone/iPad 上阅读 RSS Feed
使用 rss 在 github 中搜索,有很多围绕它的项目。
所以我的问题可能是这样的:
1)。现在 iPhone 和 iPad 上最好的或流行的 RSS 阅读器开源项目是什么?
2).工作流程可以简化为网络连接-->下载-->解析 xml -->显示数据,这方面有什么实际问题吗?
3). GoogleReader 只是一种常见的 RSS 阅读器示例?我的意思是,普通的RSS阅读器也可以用来阅读谷歌RSS阅读器的内容?
感谢您提供任何其他评论或建议来帮助我了解更多相关信息。
This is not new topic, one about iPhone ( iPhone RSS Reader )
My purpose is to get some latest and useful info before my implementation for RSS reader in iPad.( same with iPhone , right ? only GUI difference ?)
Apple already provides TopSongs as example, which use native NSNetwork and XML parser etc.
ASIHttpRequest also provides good features to download RSS xml data and use cocoa-rss to parse it. Just like Reading RSS Feeds on iPhone/iPad with ASIHttpRequest and cocoa-rss
Search in github with rss, there are a lot projects around it.
So my questions may be like these:
1). what is the best or popular open source projects for RSS reader for iPhone&iPad now ?
2). The workflow can be simplified as network connection --> download --> parse xml --> display data, any real issues around this ?
3). GoogleReader is just one common RSS reader example ? I mean, common rss reader also can be used to read google rss reader contents ?
Thanks for any other comments or suggest to help me learn more around this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然不能完整回答您所有的问题,但希望这对您的第二个问题有所帮助。我发现 NetNewsWire 的一位开发人员写的这篇文章对制作自己的阅读器时会遇到的一些挑战非常有洞察力,尤其是需要跨多个设备同步的阅读器):
为什么“仅将应用数据存储在 Dropbox 上”不适用于 RSS 阅读器
While not a complete answer for all of your questions, hopefully this will help out with your second question. I found this article by one of the devs of NetNewsWire to be very insightful on some of the challenges that will come up when making your own reader, especially one that will need to sync across multiple devices):
Why “Just Store the App Data on Dropbox” won’t work for RSS readers