UIButton 的图像丢失了新设置的图像
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该尝试使用
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).哎哟!我应该使用这段代码来代替:
Doh! I should have used this code instead: