// 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];
}
}];
for some reason the second delay just won't delay. and the animation continues instantly any help?