gpt4 book ai didi

iphone - 无法更改 UIButton 的图像

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

我想在viewWillAppear上设置按钮的图像。

我已尝试遵循所有代码 -

UIButton *front;
UIImage *temp= [UIImage imageNamed:@"06_asystole.jpg"];
[front setBackgroundImage:temp forState:UIControlStateNormal];

//front.imageView.image = [UIImage imageNamed:@"06_asystole.jpg"];
/// [front setBackgroundImage:[UIImage imageNamed:@"06_asystole.jpg" forState:UIControlStateNormal]];
// [front setImage:[UIImage imageNamed:@"06_asystole.jpg" forState:UIControlStateNormal]];

我还将 IBOutlet 设置为按钮并在 XIB 中分配它。

不知道为什么按钮的图片无法设置。

谢谢..

最佳答案

不会工作:

UIButton *front = [[UIButton alloc]init];
UIImage *temp= [UIImage imageNamed:@"06_asystole.jpg"];
[front setBackgroundImage:temp forState:UIControlStateNormal];

您想要更改现有 UIButtonbackgroundImage。您可以立即将 front 添加到 View 中并删除旧的 View ,或者使用现有的按钮名称而不是 front

关于iphone - 无法更改 UIButton 的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11408588/

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