I'm building an article reading iOS app.
Articles load by JSON
data and app containing UITableView
with images and text.
I want to use offline caching to increase the performance of app.
What is the best way of offline caching in this case?
I'm building an article reading iOS app.
Articles load by JSON
data and app containing UITableView
with images and text.
I want to use offline caching to increase the performance of app.
What is the best way of offline caching in this case?
You can use KCSCachedStore
to store cached data. You can find that here...http://devcenter.kinvey.com/ios/guides/caching-offline
The link contains the API and tutorials + references.