gpt4 book ai didi

ios - 无法在 (UIButton) 上设置 () 用户定义的检查属性

转载 作者:IT王子 更新时间:2023-10-29 05:45:18 25 4
gpt4 key购买 nike

在一个简单的 ViewController 中,我添加了一个 UIButton。我想使用“用户定义的运行时属性”。现在我添加了默认的 Bool 属性。

screen

按钮是一个@IBOutlet:

@IBOutlet var button:UIButton!

Storyboard中的链接已完成。

我的应用程序中没有其他内容。

我遇到了这个错误:

2017-03-26 20:31:44.935319+0200 ISAMG[357:47616] Failed to set (keyPath) user defined inspected property on (UIButton): 
[<UIButton 0x15e3a780> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key keyPath.

我不明白我错过了什么。

编辑 1

按照@timaktimak 的建议,我创建了一个自定义的 UIButton 类:

@IBDesignable
class ChoiceButton: UIButton {

@IBInspectable var keyPath: Bool! {
didSet {
print("didSet viewLabel, viewLabel = \(self.keyPath)")
}
}

required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
}
}

screen2

错误是一样的:

2017-03-26 22:32:27.389126+0200 ISAMG[429:71565] Failed to set (keyPath) user defined inspected property on (ISAMG.ChoiceButton): 
[<ISAMG.ChoiceButton 0x14e8f040> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key keyPath.

最佳答案

嗯,你的按钮没有一个名为 keyPath 的属性来设置它。

用户定义的运行时属性用于简单地在界面生成器中设置属性值。

您可以使用每个 UIButton 都有的标准属性,例如 backgroundColor:

enter image description here

或者,您可以创建自定义 UIButton 子类,向其添加属性,然后将按钮的类设置为创建的自定义子类,并在用户定义的运行时属性部分设置属性值。

例如,您可以查看此答案,它包含一个具有用户定义的运行时属性的自定义类的示例:https://stackoverflow.com/a/24433125/3445458

编辑:确保您没有为该类型使用可选(或隐式解包可选),它不适用于用户定义的运行时属性(我猜是因为界面生成器不知道该值是否可以设置为零,因此是否在选项中显示。

所以你不能这样做

var keyPath: Bool!

相反你只能做

var keyPath: Bool = false

或者不使用默认值,而是在构造函数中设置它。出于某种原因,它与可选的 String 一起使用(在示例中,它们使用可选的 String),但不适用于可选的 Bool .总而言之,不要过度使用或担心用户定义的运行时属性,在代码中设置默认值更清晰!

希望对您有所帮助!祝你好运!

关于ios - 无法在 (UIButton) 上设置 () 用户定义的检查属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43032924/

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