I want to fetch images into my application cache in a faster way.
I do a map kinda app by loading at about 25 images at a time in a UIscrollView in which each image takes about 1 second for downloading.
All images are of size 64KB and 256*256 dimensions. I am doing caching, So after the first time when i scroll there will be around 7-8 images to load and that too takes each second each. So in the middle of scrolling the map it stops for around 7-8 seconds.
Is there a way that I can increase the speed of getting images, so that I will be able to load atleast 4-6 images a second?