У меня появляется UILabel
, затем автореверс исчезает.Как только он исчезает, альфа сразу переходит на 1, и анимация останавливается.
arrivingLabelRed.alpha=0;
[UIView animateWithDuration:2
delay:1.0
options: UIViewAnimationCurveEaseOut|UIViewAnimationOptionRepeat|UIViewAnimationOptionAutoreverse
animations:^{
arrivingLabelRed.alpha=1;
}
completion:^(BOOL finished){
NSLog(@"Done!");
}];