在Cocoa Touch中为图像视图设置动画

时间:2010-04-13 19:57:53

标签: cocoa-touch ipad

我需要让图像视图为屏幕上的自我设置动画。我希望它是当用户点击屏幕时图像向上滑动。是否有一种相对简单的方法来平滑移动图像视图?

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

使用动画块,例如

[UIView beginAnimations:@"slide-up" context:NULL];
imageView.center = CGPointMake(200, -100);  // change this to somewhere else you want.
[UIView commitAnimations];

有关详细信息,请参阅iPhone Application Programming Guide