gpt4 book ai didi

ios - 不显示 UILabel 宽度的动画减小

转载 作者:可可西里 更新时间:2023-11-01 06:12:12 24 4
gpt4 key购买 nike

我试图减少动画中 UILabel 的宽度,但宽度立即发生变化而没有任何动画!如果我增加宽度,一切正常,您可以看到动画。

这是我的代码:

[UIView animateWithDuration:0.5 
delay:0.0
options:UIViewAnimationCurveLinear
animations:^ (void){
CGRect theNewFrame = self.titleLabel.frame;
theNewFrame.size.width -= 50.0;
self.titleLabel.frame = theNewFrame;
}
completion:^(BOOL finished){}];

如果我改变

theNewFrame.size.width -= 50.0;

theNewFrame.size.width += 50.0;

你可以看到标签在增加。但是减小宽度是行不通的!

我对这种行为没有任何解释。这是一个错误吗?

感谢您的回答!

最佳答案

尝试在开始动画之前将标签的 contentMode 设置为 UIViewContentModeCenter

self.titleLabel.contentMode = UIViewContentModeCenter;

关于ios - 不显示 UILabel 宽度的动画减小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9127343/

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