I’m parsing my data on this way:
NSDictionary *item = [tableData objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[item objectForKey:@"title"]];
[[cell detailTextLabel] setText:[item objectForKey:@"description"]];
But is there a way to parse an cell image? Normally it’s
UIImage *cellImage = [UIImage imageNamed:@"image.png"];
cell.imageView.image = cellImage;
But i’m searching for a way like
[[cell UIImage cellimage] ....
Something like that so i can parse an image url from json in it
is that possible?
Set a max width for the image