本文介绍了UILabel 中的动画文本更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在为 UILabel
设置一个新的文本值.目前,新文本显示得很好.但是,我想在新文本出现时添加一些动画.我想知道我可以做些什么来动画新文本的外观.
I'm setting a new text value to a UILabel
. Currently, the new text appears just fine. However, I'd like to add some animation when the new text appears. I'm wondering what I can do to animate the appearance of the new text.
推荐答案
这是实现此功能的代码.
Here is the code to make this work.
[UIView beginAnimations:@"animateText" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationDuration:1.0f];
[self.lbl setAlpha:0];
[self.lbl setText:@"New Text";
[self.lbl setAlpha:1];
[UIView commitAnimations];
这篇关于UILabel 中的动画文本更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!