почему-то
button.setTitleColor(.green, for: .normal)
не отрабатывает и вместо зеленого приходит синий (стандартный цвет)
Такое почему-то только на iOS 13, на 14 и 15 все работает.
С чем такое может быть связано?) грешу на
UIBarButtonItem но не знаю куда копать
private lazy var resetItem: UIBarButtonItem = {
let button = UIButton()
button.addTarget(self, action: #selector(reset), for: .touchUpInside)
button.setTitleColor(.green, for: .normal)
button.setTitle("Применить", for: .normal)
button.setTitle("", for: .disabled)
button.sizeToFit()
return UIBarButtonItem(customView: button)
}()