gpt4 book ai didi

ios - 延迟在 UILabel 中的文本之间淡入淡出

转载 作者:行者123 更新时间:2023-11-29 12:34:35 25 4
gpt4 key购买 nike

我想为 UILabel 的文本设置动画,使其显示一个文本几秒钟,然后逐渐淡入默认文本。

我目前正在使用以下代码:

-(void)tapOnBalance:(id)sender{
[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
cell.amountLabel.text = @"Hola!";
} completion:nil];

// Pause the function - act as a 'delay'
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:3]];

[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
cell.amountLabel.text = @"Hallo!";
} completion:nil];

}

这有效,但是 [NSRunLoop currentRunLoop] 暂停整个应用程序,阻止所有内容 3 秒。

如何摆脱主线程上的阻塞并仍然得到相同的结果?

最佳答案

一个简单的淡入淡出(不是交叉淡入淡出)可以像这样:

// change a label's text after some delay by fading
// out, changing the text, then fading back in
- (void)fadeLabel:(UILabel *)label toText:(NSString *)toText completion:(void (^)(BOOL))completion {
[UIView animateWithDuration:0.2 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
label.alpha = 0.0;
} completion:^(BOOL finished) {
label.text = toText;
[UIView animateWithDuration:0.2 delay:0.0 options:UIViewAnimationOptionCurveEaseIn animations:^{
label.alpha = 1.0;
} completion:completion];
}];
}

// simpler signature that can be done on a perform
- (void)changeLabelText:(NSString *)toText {
[self fadeLabel:self.myLabel toText:toText completion:nil];
}

// set the label to something, then change it with a fade, then change it back
self.myLabel.text = @"text";
[self performSelector:@selector(changeLabelText:) withObject:@"hola!" afterDelay:4];
[self performSelector:@selector(changeLabelText:) withObject:@"text" afterDelay:8];

您还可以嵌套调用的完成 block (并添加延迟参数)以在没有执行的情况下执行类似的操作。要进行交叉淡入淡出,请对两个标签(具有相同的帧)应用类似的技术,其中一个的 alpha 为零,另一个的 alpha 为 1。

关于ios - 延迟在 UILabel 中的文本之间淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26703501/

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