- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经尝试了我在 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/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!