我的UIButton
课程:
@IBDesignable class AttributedButton: UIButton {
@IBOutlet private var widthLayoutConstraint: NSLayoutConstraint?
@IBInspectable override var isSelected: Bool {
didSet {
widthLayoutConstraint?.constant = isSelected ? 100 : 50
borderColor = isSelected ? UIColor.lightGray : UIColor.white
}
}
}
然后当我在故事板中更改isSelected
属性中的宽度时,它不起作用......为什么?