gpt4 book ai didi

iphone - UIButtonTypeCustom 类型的 UIButton 将不会显示标题 (iPhone)

转载 作者:行者123 更新时间:2023-12-03 18:12:54 25 4
gpt4 key购买 nike

我一定忽略了一些完全明显的事情?但我的按钮正确显示其图像和大小,但我根本无法显示标题。

我做了一个非常简单的测试,当我这样做时标题甚至没有显示:

    CGRect frameBtn = CGRectMake(160.0f, 150.0f, 144.0f, 42.0f);
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:[UIImage imageNamed:@"left_halfscreen_button.png"] forState:UIControlStateNormal];
[button setTitle:@"Hello" forState:UIControlStateNormal];
[button setFrame:frameBtn];
NSLog(@"Title:%@", [button currentTitle]);
//prints "Title:Hello
[self addSubview:button];

我有一个为我生成自定义按钮的工厂类,我认为我弄乱了一些细节,所以我将上面的代码直接移到我的 UIView 中,标题仍然是空白。

这是一个错误还是我只是在眼前错过了一些东西。

感谢您的额外关注:)

最佳答案

图片覆盖标题,您需要将图片设为背景图片以显示标题。

[button setBackgroundImage:[UIImage imageNamed:@"left_halfscreen_button.png"]         forState:UIControlStateNormal];

关于iphone - UIButtonTypeCustom 类型的 UIButton 将不会显示标题 (iPhone),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2507248/

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