tags:

views:

13

answers:

1

how to download image for showing in UITableView from web services with need to downloading again when i scroll table.

A: 
  1. You should place image download section in cellForRowAtIndexPath method
  2. You'd better provide a link to image via service if that is possible.
NR4TR
when i scroll table than it will also download again and its a time consuming process
Vinod
You have to add a manual check whether image is already downloaded or not. It'll be good to keep downloaded images in an array of images, if there are not too much rows. In case there are much rows I'll believe it's time to think about pagination.
NR4TR