НС
func showAlert(title: String, message: String, titleBtn: String) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
let ok = UIAlertAction(title: titleBtn, style: .default) { (_) in
print("first")
}
ok.setValue(UIColor(named: "PrimaryColor"), forKey: "titleTextColor")
alert.addAction(ok)
present(alert, animated: true)
print("third")
}