iOS - 标签或图像的动画移动 [英] iOS - animate movement of a label or image

查看:136
本文介绍了iOS - 标签或图像的动画移动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何设置标签或图像的移动动画?我只是想从屏幕上的一个位置慢慢过渡到另一个位置(没什么特别的)。

How can I animate the movement of a label or image? I would just like to make a slow transition from one location on the screen to another (nothing fancy).

推荐答案

你是在 -beginAnimations:context:和 -commitAnimations 方法。 apple.com/iphone/library/documentation/uikit/reference/UIView_Class/UIView/UIView.html\"rel =noreferrer> UIView

You're looking for the -beginAnimations:context: and -commitAnimations methods on UIView.

In简而言之,你做的事情如下:

In a nutshell, you do something like:

[UIView beginAnimations:nil context:NULL]; // animate the following:
myLabel.frame = newRect; // move to new location
[UIView setAnimationDuration:0.3];
[UIView commitAnimations];

这篇关于iOS - 标签或图像的动画移动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆