UIImage Fade in after load on my UITable
Posted
by Cy
on Stack Overflow
See other posts from Stack Overflow
or by Cy
Published on 2010-06-03T15:01:56Z
Indexed on
2010/06/03
15:04 UTC
Read the original article
Hit count: 170
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?
© Stack Overflow or respective owner