如何在 cocoa touch 中下载 RSS feed 的源 XML 文件?
我正在寻找如何在 cocoa touch 中下载 RSS feed 的源 XML 文件,以便为我的 XML 解析器应用程序创建离线模式。 有谁知道该怎么做? 我的应用程序是为 iOS 4.2.1(不是更早版本)设计的,我正在运行 XCode 3.2.5。
感谢您以后对我的问题的所有回答:)
I'm looking for how to download the source XML file of an RSS feed in cocoa touch to make an offline mode for my XML parser app.
Does anyone know how to do it?
My app is designed for iOS 4.2.1 (not earlier) and i'm running XCode 3.2.5.
Thanks you for all your future answers to my question :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSURLConnection 下载数据,然后将其保存在某个地方。
Use
NSURLConnection
to download the data and then persist it somewhere.