gpt4 book ai didi

iOS UIButton 标题在 UITableViewCell 中不断恢复

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

我正在尝试使用 UITableViewController 和两个原型(prototype)单元设置一个相当简单的 Storyboard/Interface builder 应用程序。

第一个原型(prototype)单元格显示有关主UILabel 的信息,第二个原型(prototype)单元格包含一个UIButton。我已将按钮的 touchUpInside 操作连接到一些我想执行内容并修改按钮标题的代码:

- (IBAction)startButtonTouchUpInside:(UIButton *)sender {
[self doSomeStuff];
sender.titleLabel.text = @"Clicked";
}

但是,当我测试应用程序并单击 UIButton 时,UIButtons 标题会更改几分之一秒,然后恢复为 Stroyboard 界面中提供的标题 build 者。

这正常吗?

最佳答案

来自apple docs of titleLabel

Do not use the label object to set the text color or the shadow color. Instead, use the setTitleColor:forState: and setTitleShadowColor:forState: methods of this class to make those changes.

与文本类似,您应该使用 setTitle:forState:

[sender.titleLabel setTitle:@"Clicked" forState:UIControlStateNormal];

关于iOS UIButton 标题在 UITableViewCell 中不断恢复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30323848/

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