Possible Duplicate:
Lazy load images in UITableViewCell
Ive got a problem with my UITableView cells and it is that my cells are reloading each time they go out from the screen. My app loads images from a url and place them in a ImageView in the left part of the cell, so it makes the UITableView scroll really slow.
I was wondering if there is a way to:
1.Load all the cells at once. 2.Disable the reload of the cells.
In this way the TableView could scroll smoothly. Each cell is composed of three subViews. Two are used for the title and description label and the last one for the image. The contents come from a NSXMLParse so loading this cells takes time.
Thanks in advance.