Preguntas etiquetadas con uiactionsheet



16
¿Cómo presentar UIActionSheet iOS Swift?
¿Cómo hacer UIActionSheet en iOS Swift? Aquí está mi código para codificar UIActionSheet. @IBAction func downloadSheet(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .actionSheet) let saveAction = UIAlertAction(title: "Save", style: .default, handler: { (alert: UIAlertAction!) -> Void in println("Saved") }) let deleteAction = UIAlertAction(title: "Delete", style: …

8
ActionSheet no funciona iPad
Estoy usando ActionSheet en mi aplicación. En mi iPhone funciona, pero no en el simulador de iPad. este es mi código: @IBAction func dialog(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .ActionSheet) let deleteAction = UIAlertAction(title: "Delete", style: .Default, handler: { (alert: UIAlertAction!) -> Void in …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.