作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为 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/
我是一名优秀的程序员,十分优秀!