I’m new to iPhone development. In my application, I had kept a scrollview and I have loaded the images from web service using JSON parsing. Unfortunately, it is taking too much time to load them. Do you have any suggestions on how to speed up the (down)loading?
Share
Well there can be many routes you can take to make image loading faster but the one thing I would recommend most is utilize AFNetworking’s
"UIImageView+AFNetworking"category which you can find here:http://afnetworking.com/
It loads images quickly and doesnt tie up the main thread. If you have a preloader image you want to display while it is downloading you can do that as well.
AND it’s really easy: