I have an UIImage that loads from the web, and I'd like it to fade in when it displays in my UITableCell.
if([thumb image])
{
UIImage *imagen = [thumb.image retain];
[imagen drawInRect:CGRectMake(15, 4, 44, 44)];
[imagen release];
}
How could I achieve it?