【发布时间】:2013-05-24 00:12:23
【问题描述】:
我想在两个 UIButton 图像之间淡入淡出,以便在 UITableView 中设置收藏夹。
目前过渡没有效果 - 它只是在点击/触摸时直接更改图像:
trans_img = [UIImage imageNamed:@"fav_on.png"];
NSArray *subviews = [owningCell subviews];
UIButton *favbutton = [subviews objectAtIndex:2];
favbutton.imageView.animationImages =
[NSArray arrayWithObjects:trans_img,
nil];
[favbutton.imageView startAnimating];
我发现的一切都是 UIView 之间的过渡 :(
如果图像 fav_off 能够平滑地更改为 fav_on 并且反过来像淡入/淡出一样,那就太好了。
【问题讨论】:
标签: ios uibutton fadein transition