gpt4 book ai didi

ios - 在完成之前停止 animateWithDuration

转载 作者:行者123 更新时间:2023-11-29 12:39:57 26 4
gpt4 key购买 nike

我在 UIViewController 中使用此方法来显示一条消息三秒钟,然后淡出。 mainMessageLabel 是在接口(interface)文件中声明的 UILabel

- (void) showTempMessage: (NSString*) message
{
_mainMessageLabel.text = message;
_mainMessageLabel.alpha = 1;

[UIView animateWithDuration: 1
delay: 3
options: 0
animations: ^{
_mainMessageLabel.alpha = 0;
}
completion: ^(BOOL finished) {
_mainMessageLabel.text = @"";
_mainMessageLabel.alpha = 1;
}];
}

如果我在上一次调用后至少四秒调用它,该方法工作正常,但如果我更早调用它,当前一个实例仍在动画时,标签消失,我必须再等四秒钟才能调用它再次工作。每次调用此方法时,我都希望它停止之前的动画并显示新消息三秒钟,然后淡出。

我在这里尝试了其他问题的答案,比如在options:中添加UIViewAnimationOptionBeginFromCurrentState,甚至添加[_mainMessageLabel.layer removeAllAnimations] 到我函数的顶部,但没有任何效果。你有什么建议吗?

最佳答案

问题是完成 block 的时间(它在取消先前动画并重置标签的代码之后触发)。简单的解决方案是完全消除该完成 block (将它的 alpha 设为零与将 text 设置为 @"" 并使其“可见”没有区别)。因此:

_mainMessageLabel.text = message;
_mainMessageLabel.alpha = 1.0;

[UIView animateWithDuration:1 delay:3 options:0 animations:^{
_mainMessageLabel.alpha = 0.0;
} completion:nil];

关于ios - 在完成之前停止 animateWithDuration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25256872/

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