Web からロードする UIImage があり、UITableCell に表示されるときにフェードインしたいと考えています。
if([thumb image])
{
UIImage *imagen = [thumb.image retain];
[imagen drawInRect:CGRectMake(15, 4, 44, 44)];
[imagen release];
}
どうすればそれを達成できますか?
Web からロードする UIImage があり、UITableCell に表示されるときにフェードインしたいと考えています。
if([thumb image])
{
UIImage *imagen = [thumb.image retain];
[imagen drawInRect:CGRectMake(15, 4, 44, 44)];
[imagen release];
}
どうすればそれを達成できますか?
アルファ値を 0.0 から 1.0 にアニメーション化します。
This SO question/answerは、その方法を示すコードを提供します。