views:

131

answers:

1

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?

A: 

Animate the alpha value from 0.0 to 1.0.

This SO question/answer provides code to show you how.

progrmr