如何停止动画?

发布于 2024-11-04 03:36:52 字数 362 浏览 0 评论 0原文

我正在使用这段代码来制作动画。我的问题是如何停止动画?也不要告诉我更改重复次数。我希望动画一直运行到我说停止为止。我可以使用一种方法来实现此目的吗?

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationRepeatCount:INFINITY];
[[menuViewOne loadBut] setFrame:CGRectMake(230, 35, 150, 25)];
[UIView commitAnimations];

I am using this code to make an animation. My question is how do I stop the animation? Don't tell me to change the repeat count either. I want the animation to work until I say stop. Is there a method that I can use to achieve this?

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationRepeatCount:INFINITY];
[[menuViewOne loadBut] setFrame:CGRectMake(230, 35, 150, 25)];
[UIView commitAnimations];

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

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

发布评论

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

评论(1

烂柯人 2024-11-11 03:36:52

您可以使用块来使用开始停止动画。文档不推荐 commitAnimations。

来自文档。

不鼓励使用此方法
iOS 4.0 及更高版本。您应该使用
基于块的动画方法
请指定您的动画。

You could use start stop animations using blocks. commitAnimations is not recommended by the documentation.

From the docs.

Use of this method is discouraged in
iOS 4.0 and later. You should use the
block-based animation methods to
specify your animations instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文