我要做一个问答游戏,用户必须从4个选项中选择正确的答案。这些选项将是图像格式。我希望那些矩形图像将通过Pop Up动画在屏幕上显示。 你能告诉我如何在iPhone App上添加弹出动画吗? 注意:弹出动画应该像Keynote中的Pop Up过渡。我的意思是弹出后它会来回振动。
答案 0 :(得分:0)
检查此SO link
您可以根据想要动画的方式修改值。
答案 1 :(得分:0)
//Set default frame for all 4 images.
[UIView animateWithDuration:0.5 animations:^{
//set frame for first image
} completion:^(BOOL finished) {
//this block will call after first animation is done.so after that animate 2nd image . do same for all 4 image.
}];
也许这会对你有帮助。