以下のコードの UIView を介して点滅するアニメーション、アルファ値が必要ですが、アニメーション表示が直接出現したときに消えるのはなぜですか? アニメーションは滑らかではありません。
[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) {
}];