gpt4 book ai didi

iphone - 如何创建自定义 UIButton(带图像)但仍使用 setTitle?

转载 作者:行者123 更新时间:2023-12-03 20:21:43 26 4
gpt4 key购买 nike

我尝试使用 UIButtonTypeCustom 创建 UIButton。然后使用以下方法调整它的外观

[sendButton setImage:[UIImage imageNamed:@"sendButtonOff.png"] forState:UIControlStateNormal];
[sendButton setImage:[UIImage imageNamed:@"sendButtonOn.png"] forState:UIControlStateHighlighted];
[sendButton setImage:[UIImage imageNamed:@"sendButtonDisabled.png"] forState:UIControlStateDisabled];

但是问题是,一旦开始将 UIImages 设置为状态,setTitle 就不再起作用。我认为 setTitle 仅适用于非 UIButtonTypeCustom?这意味着我要么必须将文本放入图像本身(不是很健壮),要么将其子类化并向 View 添加 UILabel?听起来工作量很大:( 有什么想法吗?

最佳答案

如果您希望标题显示在图像上,请尝试使用以下命令:

[sendButton setBackgroundImage:[UIImage imageNamed:@"sendButtonOff.png"] forState:UIControlStateNormal];
[sendButton setBackgroundImage:[UIImage imageNamed:@"sendButtonOn.png"] forState:UIControlStateHighlighted];
[sendButton setBackgroundImage:[UIImage imageNamed:@"sendButtonDisabled.png"] forState:UIControlStateDisabled];

关于iphone - 如何创建自定义 UIButton(带图像)但仍使用 setTitle?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1123110/

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