UIImage 在我的 UITable 上加载后淡入
我有一个从网络加载的 UIImage,我希望它在我的 UITableCell 中显示时淡入。
if([thumb image])
{
UIImage *imagen = [thumb.image retain];
[imagen drawInRect:CGRectMake(15, 4, 44, 44)];
[imagen release];
}
我怎样才能实现它?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 alpha 值设置为从 0.0 到 1.0 的动画。
这个这样的问题/答案 提供代码来向您展示如何操作。
Animate the alpha value from 0.0 to 1.0.
This SO question/answer provides code to show you how.