需求:UIButton 常态为静态图片,选中状态为动态图片
实现效果:
实现gif动态
UIImage *customImg = [UIImage animatedImageNamed:gifName duration:2];
[button setImage: customImg forState:UIControlStateSelected];
这个效果很简单,主要是提供给自己一种思路,Mark一下。
需求:UIButton 常态为静态图片,选中状态为动态图片
实现效果:
实现gif动态
UIImage *customImg = [UIImage animatedImageNamed:gifName duration:2];
[button setImage: customImg forState:UIControlStateSelected];
这个效果很简单,主要是提供给自己一种思路,Mark一下。