我想要一个闪烁的动画,通过UIView下面的代码Alpha值,为什么动画显示的时候消失了,直接出现了?动画不流畅。
[UIView animateWithDuration:1 delay:0 options:UIViewAnimationOptionRepeat animations:^{
if (aView.alpha == 0) {
[aView setAlpha:0.5];
}else if (middle.alpha == 0.5){
[middle setAlpha:0];
}
} completion:^(BOOL finished) {
}];