I can update detailTextLabel.text, and the UITableViewCell shows the changes at runtime, but if I try to update imageView.image, it will not change the visible image. Any idea on why? I tried to call the update in UITableViewCell specifically, but to no avail.
-(void)getImageForURL:(NSURL*)url row:(UITableViewCell*)cell { UIImage*image; image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]; cell.imageView.image = image;
source share