Le estoy presentando un UIAlertView
al usuario y no puedo entender cómo escribir el controlador. Este es mi intento:
let alert = UIAlertController(title: "Title",
message: "Message",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Okay",
style: UIAlertActionStyle.Default,
handler: {self in println("Foo")})
Tengo un montón de problemas en Xcode.
La documentación dice convenience init(title title: String!, style style: UIAlertActionStyle, handler handler: ((UIAlertAction!) -> Void)!)
Los bloques / cierres completos están un poco por encima de mi cabeza en este momento. Cualquier sugerencia es muy apreciada.
{alert in println("Foo")}
,{_ in println("Foo")}
y{println("Foo")}
también debería funcionar.