gpt4 book ai didi

iphone - 如何让 UIImageView 告诉我它的动画何时停止?

转载 作者:行者123 更新时间:2023-12-03 20:49:17 25 4
gpt4 key购买 nike

我有一个 UIImageView,它以动画形式显示一系列图片。项目的这一部分效果很好。

我想在动画结束时显示一个标签。 Imageview 动画结束时是否会触发一个事件?

最佳答案

使用setAnimationDuration:设置动画的持续时间同时,您将 performSelector:withObject:withDelay 配置为与动画持续时间相同的延迟

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0]; //the animation will last for 1.0s
//some animation code here
[UIView commitAnimations];
[self performSelector:@selector(someMethodToDisplayLabel) withObject:nil afterDelay:1.0];
//someMethodToDisplayLabel will be called after 1.0s

关于iphone - 如何让 UIImageView 告诉我它的动画何时停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2509718/

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