iPhone数据离线访问
嘿大家, 我正在考虑离线保存数据,以便用户可以在没有互联网连接时访问 iPhone 上的数据。您能否建议一种简单的方法来保存数据以供离线访问。就我而言,我只需要保存 rss feed,这样每当我的服务无法提取最新的 rss feed 时,它就应该显示手机上存在的 rss feed。
请大家帮帮我!!!感谢您抽出时间。
Hey All,
I am thinking to save the data offline so that user can access the data on the iPhone when there is no internet connectivity. Can you please suggest an easy way to save the data for offline access. In my case I just need to save the rss feed so that whenever my service fails to pull the latest rss feed it should show the one that is present on phone.
Please help me guys!!! Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能希望在用户在线时使用 SQLite 保存数据。请参阅此教程来实现 SQLite。如果您之前没有使用过它,SQLite 会将其数据库存储在单个文件中,您可以将其与 iPhone SDK 一起使用。
您还可以考虑使用核心数据来存储信息,但我没有这方面的经验。
编辑:这个 教程可能更好。这是我第一次在 iPhone 上使用 SQLite 时使用的。
You might want to use SQLite to save the data when the user is online. See this tutorial for implementing SQLite. If you haven't used it before SQLite stores it's database in a single file which you can use with the iPhone SDK.
You could also look into using Core Data to store information but I have no experience with this.
EDIT: This tutorial is probably better. It was the one I used when first using SQLite on the iPhone.
您可以将提要保存为设备上的静态文件,也可以将它们保存到设备上的 sqlitedb,或者可以使用核心数据保存它们。有很多不同难度级别的选择。
简单的文件读/写代码
you can save the feeds as static files on the device or you can save them to the sqlitedb on the device or you can save them using core data. There are plenty of options with varying levels of difficulty.
Simple File read/write code