Boas,
como faço um alerta no Swift? tentei da forma abaixo mas deu um erro.
@IBAction func showAlertButtonTapped(_ sender: AnyObject) {
var myAlert = UIAlertController(title: "Alert", message: "Bem-vindo", preferredStyle: UIAlertControllerStyle.alert);
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default){
(ACTION) in
print("Cancel Button Tapped")
}
myAlert.addAction(okAction)
self.presentedViewController(myAlert, animated: true, completion: nil)
}
}