Exibir alerta padrao Swift 3
19 de novembro de 2016 | by administrador
@IBAction func emiteAlerta(_ sender: Any) {
let alerta = UIAlertController(title: "E ai?", message: "O que temos para hoje?", preferredStyle: .actionSheet)
//ou let alerta = UIAlertController(title: "E ai?", message: "O que temos para hoje?", preferredStyle: .alert)
if dispositivo == "iPad"{
alerta.popoverPresentationController?.sourceView = view
alerta.popoverPresentationController?.sourceRect = (sender as AnyObject).frame
}
let acao = UIAlertAction(title: "OK", style: .default, handler: nil)
alerta.addAction(acao)
present(alerta, animated: true, completion: nil)
}