gpt4 book ai didi

ios - 更改没有淡入淡出效果的 UIButton 标题?

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

当我更改 UIButton 的标题时,它会产生旧标题淡出而新标题淡入的效果。我可以在没有动画的情况下更改标题吗?

[self.a setTitle:@"a" forState:UIControlStateNormal];

最佳答案

对于系统 UIButton,使用:

[self.a layoutIfNeeded];

对于自定义 UIButton,使用:

[UIView setAnimationsEnabled:NO];
[self.a setTitle:@"a" forState:UIControlStateNormal];
[UIView setAnimationsEnabled:YES];

关于ios - 更改没有淡入淡出效果的 UIButton 标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33093613/

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