My application hierarchy is as follows:
UINavigationController
|_____
UITableViewController (display products summary with thumbnail image)
|_____
UIViewController (display product details with image)
I'm using the following class to load images asynchronously in both UITableViewController and UIViewController since it was too slow to load the view as its getting the image from the internet
http://www.markj.net/iphone-asynchronous-table-image
I don't have any problem in UITableViewController, the problem is when the cell is clicked it loads the image in UIViewController, if I go back to UITableViewController then click another cell, the UIViewController opened with previous image until the new image loaded
How can I reset the UIImageView in UIViewController until the new image loaded?
This is the code to load the details view:
CGRect frame;
frame.size.width=240; frame.size.height=130;
frame.origin.x=0; frame.origin.y=0;
AsyncImageView* asyncImage = [[[AsyncImageView alloc] initWithFrame:frame] autorelease];
asyncImage.tag = 999;
NSURL *url = [NSURL URLWithString:@"http://i53.tinypic.com/5ezwc4.jpg"];
[asyncImage loadImageFromURL:url];
[detailsViewController.imgProduct addSubview:asyncImage];
Please help.