gpt4 book ai didi

ios - UILabel 中的动画文本更改

转载 作者:IT老高 更新时间:2023-10-28 12:20:22 29 4
gpt4 key购买 nike

我正在为 UILabel 设置一个新的文本值。目前,新文本看起来很好。但是,我想在新文本出现时添加一些动画。我想知道我可以做些什么来为新文本的外观设置动画。

最佳答案

我想知道它是否有效,而且效果很好!

Objective-C

[UIView transitionWithView:self.label 
duration:0.25f
options:UIViewAnimationOptionTransitionCrossDissolve
animations:^{

self.label.text = rand() % 2 ? @"Nice nice!" : @"Well done!";

} completion:nil];

swift 3、4、5

UIView.transition(with: label,
duration: 0.25,
options: .transitionCrossDissolve,
animations: { [weak self] in
self?.label.text = (arc4random()() % 2 == 0) ? "One" : "Two"
}, completion: nil)

关于ios - UILabel 中的动画文本更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3073520/

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