隐藏UIButton图像

时间:2013-07-26 14:30:46

标签: ios uibutton

我实现了这个方法来制作闪光按钮,但触摸按钮会停止工作。

-(void)imageAnimation:(UIButton *)imagen{
[UIView animateWithDuration:.5 animations:^{
    imagen.alpha = 1.0;
} completion:^(BOOL finished){
    [UIView animateWithDuration:.5 delay:0.5 options:0 animations:^{
        imagen.alpha = 0.0;
    } completion:^(BOOL finished){
        [self imageAnimation:imagen];
    }];
}];

}

你知道我可以做的是让图像闪烁按钮但是按钮总是处于活动状态并且可见的触摸效果很好吗?

1 个答案:

答案 0 :(得分:0)

如何动画UIImageView的alpha并在其上使用透明的UIButton?或者,您可以在UIImageView本身上使用UITapGestureRecognizer,但我认为alpha = 0问题也将在此场景中重现。