gpt4 book ai didi

IOS:不快速调用完成的动画

转载 作者:行者123 更新时间:2023-11-29 03:26:17 24 4
gpt4 key购买 nike

我有这段代码来模拟多相机闪光灯

[UIView animateWithDuration:0.1
delay:0.f
options:UIViewAnimationOptionAutoreverse
animations:^{
[UIView setAnimationRepeatCount:2];
flash.alpha=1.f;
}
completion:^(BOOL finished) {
flash.alpha = 0;
}];

flash 是一个以 alpha = 0 开头的白色 UIImageView(全屏)。
如果您尝试使用此代码,您会注意到最后闪光灯会在一段时间内保持全白状态,并且它对我的效果并不完美,我该怎么解决这个问题?

最佳答案

您的代码的问题是您使用选项UIViewAnimationOptionAutoreverse进行自动反转,同时还在完成 block 中指定您自己的最终状态。

试试这个:

[UIView animateWithDuration:0.1f
delay:0
options:UIViewAnimationOptionAutoreverse
animations:^{
[UIView setAnimationRepeatCount:2];
flash.alpha=1.f;
}
completion:nil];

关于IOS:不快速调用完成的动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20429845/

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