gpt4 book ai didi

ios - UIButton背景图像键是什么? iOS

转载 作者:行者123 更新时间:2023-11-29 04:32:10 25 4
gpt4 key购买 nike

这是我的第一个问题。

我正在尝试以编程方式更改 UIButton 的背景图像,但出现问题,我找不到背景图像的键。为了理解,这是我的代码:

    [[self.view viewWithTag:69000+i] setValue:[UIImage imageNamed:[NSString stringWithFormat:@"%d-options.png", i+1]] forKey:@"backgroundImage"];

执行此操作时,应用程序崩溃。出现此错误:

线程1:在main.m中发出SIGTRAP信号
在调试器中:(lldb)

那么,如果我是对的并且崩溃是由不正确的键(backgroundImage)引起的,那么引用背景图像的键是什么?

非常感谢!!

PD:我需要通过 self.view viewWithTag 完成此操作......

最佳答案

你为什么不使用这个:

   if([[self.view viewWithTag:69000+i] isKindOfClass:[UIButton class]])
{
UIButton *currentButton = (UIButton *)[self.view viewWithTag:69000+i];
[currentButton setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%d-options.png", i+1]] forState:UIControlStateNormal];
}

关于ios - UIButton背景图像键是什么? iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11582122/

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