我有一个 UIButton 有箭头类型的蓝色图像设置为
UIImage *arrowImage = [UIImage imageNamed:@"bluearrow.png"];
[self.prevbutton setBackgroundImage:arrowImage forState:UIControlStateNormal];
现在我有另一个图像黄色.png,我想在这个按钮图像上叠加并连续制作一个闪烁的动画。我怎样才能做到这一点?
我有一个 UIButton 有箭头类型的蓝色图像设置为
UIImage *arrowImage = [UIImage imageNamed:@"bluearrow.png"];
[self.prevbutton setBackgroundImage:arrowImage forState:UIControlStateNormal];
现在我有另一个图像黄色.png,我想在这个按钮图像上叠加并连续制作一个闪烁的动画。我怎样才能做到这一点?
这应该可以帮助你。
myButton.imageView.animationImages =
[NSArray arrayWithObjects:[UIImage imageNamed:@"image1.png"],
[UIImage imageNamed:@"image2.png"],
nil];
myButton.imageView.animationDuration = 0.5; //whatever you want (in seconds)
[myButton.imageView startAnimating];