我知道如何设置 enable = YES/NO,一个使用属性和 xib 创建的按钮。但是,您如何从同一类中的另一个方法对以编程方式创建的按钮执行相同的操作?
例如,这是我在 viewDidLoad 中的按钮:
UIButton *AllList = [UIButton buttonWithType:UIButtonTypeCustom];
AllList.frame = CGRectMake(40, 80, 107.f, 53.5f); //set frame for button
UIImage *buttonImageFull = [UIImage imageNamed:@"allModsBtn.png"];
[AllList setBackgroundImage:buttonImageFull forState:UIControlStateNormal];
[self.view addSubview:AllList];
// add targets and actions
[AllList addTarget:self action:@selector(getButtons:) forControlEvents:UIControlEventTouchUpInside];
AllList.tag = 0;
我想用另一种方法将此按钮的启用设置为“是”或“否”。