gpt4 book ai didi

ios - "enable"- 我的 UIButton 成员不存在,为什么?

转载 作者:行者123 更新时间:2023-11-30 13:47:52 29 4
gpt4 key购买 nike

我试图让我的按钮禁用,为什么会发生文本编辑,所以我使用button.enabled = false,但这在某种程度上不起作用。这就是给我带来麻烦的一点。

@IBAction func saveButton(sender: UIButton) {
<some code>
}

func textFieldDidBeginEditing(textField: UITextField) {
saveButton.enabled = false
}

错误是“类型‘(UIButton) -> ()’的值没有成员‘启用’”

我尝试过 saveButton.userInteractionEnabled

那么问题出在哪里

最佳答案

正如错误所述,saveButton 是一个函数。该函数接受 UIButton 参数,但函数本身不是 UIButton 类型,而是 (UIButton) -> () 类型.

saveButton 需要是一个变量才能使您的代码正常工作。我假设 saveButton 是您的按钮之一连接到的 IBAction。找到该按钮,为其创建一个 IBOutlet,然后在 textFieldDidBeginEditing 中使用该按钮。

关于ios - "enable"- 我的 UIButton 成员不存在,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34700297/

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