我实现了这个方法来制作闪光灯按钮,但是按钮的触摸停止工作。
-(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];
}];
}];
}
你知道我可以使图像闪烁按钮,但按钮始终处于活动状态并且可见触摸效果很好?