gpt4 book ai didi

iphone - 动画: How to make UIbutton move from right to left when view is loaded?

转载 作者:行者123 更新时间:2023-12-03 18:21:59 25 4
gpt4 key购买 nike

到目前为止,我还没有用 iPhone 开发做过任何动画。

任何人都可以帮助我如何在加载 View 时使 UIbutton 从右向左移动吗?

我想生成这样的效果:加载 View 时,按钮似乎从右端向左移动并停在其位置。可能吗?

任何有关此动画的帮助都将不胜感激。如果有的话,请帮忙提供一些样本。

提前致谢。

最佳答案

为了使其更加平滑,我建议不要更改 UIView 的框架,而是更改其中心;

CGPoint newLeftCenter = CGPointMake( 20.0f + myButton.frame.size.width / 2.0f, myButton.center.y);
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0f];
myButton.center = newLeftCenter;
[UIView commitAnimations];

关于iphone - 动画: How to make UIbutton move from right to left when view is loaded?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1671966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com