// Animate moving the cards into position
[UIView animateWithDuration:0.5
delay:0.0
options:UIViewAnimationOptionCurveLinear
animations: ^{ card.frame = cardFrame; }
completion: ^ (BOOL finished) {
if (finished) {
[UIView animateWithDuration:1.0
delay:3.0
options:UIViewAnimationOptionTransitionFlipFromRight
animations: ^ { card.image = [UIImage imageNamed:@"imgBack.png"]; }
completion:NULL];
}
}];
由于某种原因,第二次延迟不会延迟。动画立即继续有什么帮助吗?