Specifically, how do you get the image subview from a uitableview cell?
My table view gets data from the web asynchronously. When I created the image view the first time
Set a tag on the imageView when you create it:
[image viewSetTag: uniqueIntValue];
Then when you want to grab the view use:
UIView* recoveredImageView = [cell viewWithTag uniqueIntValue];