在Xcode中滑动图像

时间:2012-07-11 00:44:33

标签: ios xcode animation uiimageview sliding

在我的应用中,我有一个按钮。我希望能够点击该按钮,然后将其移动到屏幕上的某个点。但是,我还想让图像滑到这一点,而不是只是出现在那里。我能做到这一点吗?此时,我的图像就在我需要的地方,我只想让它滑到那里。任何帮助深表感谢。谢谢!

3 个答案:

答案 0 :(得分:4)

[UIView animateWithDuration:2.0 animations:^{
    imageView.center = CGPointMake(50, 50); // or wherever
}];

答案 1 :(得分:1)

在Mac OS X 10.5及更高版本或iOS上,查看Core Animation: https://developer.apple.com/technologies/mac/graphics-and-animation.html

答案 2 :(得分:0)

我相信你的问题已在这里得到解答,请告诉我这是否有帮助或不够准确。

Move a UIImageView with an animation

祝你好运