gpt4 book ai didi

iOS UIButton、setEnabled 和 button.hidden 不工作

转载 作者:行者123 更新时间:2023-11-28 18:25:29 24 4
gpt4 key购买 nike

我已经尝试了我在 SO 上找到的所有答案,所以要么我遇到了不同的问题,要么我的大脑发热了。

无论如何,我在 Storyboard上有一个 UIButton,它链接到一个名为 _cameraButtonPress 的 IBAction(UIButton 称为 _cameraButton)。按下按钮时我想暂时禁用按钮,所以我立即调用 [sender setEnabled:NO];这很好用。但是,在保存图像的不同函数中,成功保存后我使用 [_cameraButton.setEnabled:YES];这是行不通的。

如果我在 IBAction 调用的函数中将 sender 替换为 _cameraButton,这也不起作用。我将 UIButton 链接到 IBOutlet。

我可以发布代码,但它现在是一个相当大的项目,这里是相关的部分:

在标题中...

IBOutlet UIButton *_cameraButton;

IBAction...

- (IBAction) _cameraButtonPress:(id)sender {

[sender setEnabled:NO]; //stops button responding to touch events

在不同的函数中进一步向下:

} else {
NSLog(@"colour image saved successfully");
[_cameraButton setEnabled:YES];


}

有什么想法吗?

谢谢。

最佳答案

您确定已将 _cameraButton 连接到 UIButton 吗?尝试记录 _cameraButton 以查看它是否包含对有效对象的引用。

NSLog(@"%@", _cameraButton);

关于iOS UIButton、setEnabled 和 button.hidden 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10774970/

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