Swift UIButton Subclass и изменение цвета в зависимости от переменной - PullRequest
0 голосов
/ 29 ноября 2018

Я использую подкласс для своего UIButton, и у него есть переменная с именем isActive.Мне нужно изменить цвет границы кнопки на основе этой переменной.Эта переменная изменится программно.Пожалуйста, помогите мне с этим.

@IBDesignable
class buttonCTAOutlineDark: UIButton {

override init(frame: CGRect) {
    super.init(frame: frame)
    commonInit()
}

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

override func prepareForInterfaceBuilder() {
    commonInit()
}

@IBInspectable var isActive: Bool {
    get {
        return self.isActive
    }
    set (active) {
        if active {
            commonInit(isActive: active)
        }
    }
}

func commonInit(isActive: Bool = false) {
    self.backgroundColor = .clear
    self.layer.cornerRadius = 4
    self.layer.borderWidth = 1

    if (isActive) {
        self.tintColor = ACTIVE_COLOR
        self.layer.borderColor = ACTIVE_COLOR.cgColor
    } else {
        self.tintColor = nil
        self.layer.borderColor = UIColor(red:0.69, green:0.72, blue:0.77, alpha:1.0).cgColor
    }
}
}

Ответы [ 2 ]

0 голосов
/ 29 ноября 2018

Ваше isActive свойство написано неправильно.Во-первых, это не должно быть вычисляемое свойство.В настоящее время метод get просто вызывает бесконечную рекурсию, а метод set фактически ничего не устанавливает.

Свойство isActive должно быть хранимым свойством с наблюдателем свойства didSet:

@IBInspectable
var isActive: Bool {
    didSet {

    }
}

Внутри didSet, вы можете просто положить последнюю часть commonInit.Первая часть commonInit не должна запускаться каждый раз, когда изменяется isActive.Я рекомендую вам извлечь его как метод с именем updateBorder:

func updateBorder(isActive: Bool) {

    if (isActive) {
        self.tintColor = ACTIVE_COLOR
        self.layer.borderColor = ACTIVE_COLOR.cgColor
    } else {
        self.tintColor = nil
        self.layer.borderColor = UIColor(red:0.69, green:0.72, blue:0.77, alpha:1.0).cgColor
    }

}

А затем в didSet вы можете просто вызвать это:

updateBorder(isActive: isActive)
0 голосов
/ 29 ноября 2018

Вы должны наблюдать didSet, чтобы обновить viewSwift имена типов должны начинаться с заглавной буквы, например ButtonCTAOutlineDark.Пожалуйста, смотрите фиксированный класс,

@IBDesignable
class ButtonCTAOutlineDark: UIButton {

    override init(frame: CGRect) {
        super.init(frame: frame)
        commonInit()
    }

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

    @IBInspectable var isActive: Bool = false {
        didSet {
            self.commonInit(isActive: self.isActive)
        }
    }

    func commonInit(isActive: Bool = false) {
        self.backgroundColor = .clear
        self.layer.cornerRadius = 4
        self.layer.borderWidth = 1

        if (isActive) {
            self.tintColor = ACTIVE_COLOR
            self.layer.borderColor = ACTIVE_COLOR.cgColor
        } else {
            self.tintColor = nil
            self.layer.borderColor = UIColor(red:0.69, green:0.72, blue:0.77, alpha:1.0).cgColor
        }
    }
}
...