如何从 iPad 中的特定位置开始为 UILabel 制作动画?

发布于 2024-12-10 14:52:00 字数 88 浏览 0 评论 0原文

我需要在按下按钮时开始为 UILabel 制作动画...动画应该从按钮的位置开始。 我怎样才能实现这个目标?

即,将标签从屏幕的一端移动到另一端。

I need to start animating a UILabel when a button is pressed... the animation should start from the position of the button.
How can I achieve this?

i.e moving label from one end of the screen to another end.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烏雲後面有陽光 2024-12-17 14:52:00

这是通过 UIView 的 animateWithDuration 方法实现的,可以在文档 此处

一个非常简单的示例,按下按钮时应该调用:

[UIView animateWithDuration:0.5 animations:^{
     // set new position of label which it will animate to
     myLabel.frame = CGRectMake(x,y,width,height);
}];

This is acheviced with UIView's animateWithDuration methods, which can be found in the documentation here.

A very simple example which should be called when your button is pressed:

[UIView animateWithDuration:0.5 animations:^{
     // set new position of label which it will animate to
     myLabel.frame = CGRectMake(x,y,width,height);
}];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文