最初に設定されている2つのオブジェクトが同時に表示にフェードインします。最初hidden
のアニメーションの数秒後に、2番目のアニメーションを起動したいのですが、両方が同時にフェードインしますか?
_text.alpha = 0;
_text.hidden = NO;
[UIView animateWithDuration:1.9 animations:^{
_text.alpha = 1;
}];
////////////second animation
_note.alpha = 0;
_note.hidden = NO;
[UIView setAnimationDelay:2.0];
[UIView animateWithDuration:1.9 animations:^{
_note.alpha = 1;
}];