I download texts and image for every table cell from internet. I do it in background (GCD), but performance is not good (takes a while to dll images for all rows) because there are lots of rows.
I use nsurlconnection for image dll.
I googled a bit and became confused. What is the easiest way to do this? Use NSCache (for images and text) or do i have to learn core data?
Checkout
https://github.com/rs/SDWebImage/
for a super simple way of doing this...From the README:
This is all you need for cached images. You can look at the source for how to extend this to support caching text objects too. Alternatively you could use
NSUserDefaults
to store Key-Value pairs based on URL and text data.