UIButton 的图像丢失了新设置的图像

发布于 2024-08-06 17:47:23 字数 395 浏览 2 评论 0原文

我在 IB 中设置了一个 UIButton(自定义,带图像),它是我的代码中的 IBOutlet。

在 viewController 中的 viewDidLoad 方法中,我试图更改 UIButton 的现有图像

UIImage *newbuttonimage = [UIImage imageNamed:@"newbuttonimage.png"];
testbutton.imageView.image = newbuttonimage;

,这在启动应用程序时有效,但是每当您与按钮交互(按下它)时,它都会更改为原始图像(在 IB 中设置) )。整个项目中没有其他代码可以更改图像,那么这是怎么回事呢?

顺便说一句,当我将上述代码放入项目的任何其他部分时,它不会更改图像。

I've got a UIButton (custom, with image) set up in IB which is an IBOutlet in my code.

In my viewDidLoad method in the viewController, I am trying to change the existing image of the UIButton

UIImage *newbuttonimage = [UIImage imageNamed:@"newbuttonimage.png"];
testbutton.imageView.image = newbuttonimage;

OK, that works when starting the app, but whenever you interact with the button (press it), it changes to the original image (set in IB). There's no other code to change images in the whole project, so what is going on?

Incidentally, when I put the above code in any other part of my project it doesn't change the image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放手` 2024-08-13 17:47:23

您应该尝试使用 setImage:forState 而不是直接赋值图片; UIButton 有多种状态,如果设置不当,可能会产生不需要的行为(类似于您所看到的行为)。

You should try using setImage:forState instead of assigning the image directly; there are multiple states of a UIButton and, if not set properly, may yield unwanted behaviors (akin to the ones you're seeing).

战皆罪 2024-08-13 17:47:23

哎哟!我应该使用这段代码来代替:

UIImage *newbuttonimage = [UIImage imageNamed:@"newbuttonimage.png"];
[testbutton setImage:newbuttonimage forState:UIControlStateNormal];

Doh! I should have used this code instead:

UIImage *newbuttonimage = [UIImage imageNamed:@"newbuttonimage.png"];
[testbutton setImage:newbuttonimage forState:UIControlStateNormal];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文