Я уверен, что Core Animation справится с этим. Если ваши карты UIImageViews
, вы можете просто использовать что-то вроде:
UIImageView * card; // Assume this is a valid UIImageView
[UIView beginAnimations@"CardZoom" context:nil];
[UIView setAnimationDuration 0.8]; // However long you want
card.frame = CGRectMake(newX, newY, 120, 170); // set to final position and size
[UIView commitAnimations];