3

我有一个 UIButton 有箭头类型的蓝色图像设置为

     UIImage *arrowImage = [UIImage imageNamed:@"bluearrow.png"];
    [self.prevbutton setBackgroundImage:arrowImage forState:UIControlStateNormal];

现在我有另一个图像黄色.png,我想在这个按钮图像上叠加并连续制作一个闪烁的动画。我怎样才能做到这一点?

4

1 回答 1

4

这应该可以帮助你。

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];

引用自 https://stackoverflow.com/a/7490535/716216

于 2012-04-12T10:18:06.580 回答