AlterDialog en Swift con múltiples opciones

let refreshAlert = UIAlertController(title: "Algún titulo", message: "¿Pregunta?", preferredStyle: UIAlertControllerStyle.Alert) // Nóta: si Titulo fuese "" no se va a mostrar título alguno y no quedará reservado algún espacio (visual) para dicho alert refreshAlert.addAction(UIAlertAction(title: "Si", style: .Default, handler: { (action: UIAlertAction!) in print("Salir") })) refreshAlert.addAction(UIAlertAction(title: "No", style: .Default, handler: { (action: UIAlertAction!) in print("No salir") })) // Nótese que se pueden poner varias opciones no solo dos, pero si se pone más de dos se van a colocar verticalmente presentViewController(refreshAlert, animated: true, completion: nil) // Ejecuta el alert

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.