预填充 RestKit 缓存
我想发送带有 RestKit 缓存中已有文件的应用程序。那怎么办呢? 或者,是否可以使用 RestKit 反序列化应用程序包中的 json 文件?
I'd like to ship the app with a file already in the RestKit's cache. How can that be done?
Alternatively, is it possible with RestKit to deserialize a json file from the app bundle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在应用程序中使用 CoreData 吗?
如果是这样,您想查看
RKManagedObjectSeeder
,它允许您使用 JSON 文本文件来填充可以随您的应用程序一起提供的种子数据库。或者,如果不使用 CoreData,我认为您可以让它在启动时读取 JSON 文本文件,但我不需要这样做。
看一下
RESTKit
附带的RESTKit
Twitter 示例,因为我相信它里面有您需要的东西。Are you using CoreData in your App?
If so you want to look at the the
RKManagedObjectSeeder
, which allows you to use jSON text files to populate a seed database which can be shipped with your App.Alternatively, if not using CoreData, I think you can get it to read JSON text files on launch, but I haven't needed that.
Have a look at the
RESTKit
Twitter example that comes withRESTKit
, as I believe it has what you need in there.