我需要让图像视图为屏幕上的自我设置动画。我希望它是当用户点击屏幕时图像向上滑动。是否有一种相对简单的方法来平滑移动图像视图?
感谢您的帮助
答案 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。