3

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?

holex
  • 23,961
  • 7
  • 62
  • 76
Daljeet
  • 1,573
  • 2
  • 20
  • 40

2 Answers2

0

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.

Steve Sahayadarlin
  • 1,164
  • 3
  • 15
  • 32
0

"The best" will always be different based on opinions of what people have used. I've used (and would use again) Apple's NSCache framework.

Karim
  • 736
  • 3
  • 14