Prezentuję UIAlertView
użytkownikowi a i nie mogę wymyślić, jak napisać procedurę obsługi. To jest moja próba:
let alert = UIAlertController(title: "Title",
message: "Message",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Okay",
style: UIAlertActionStyle.Default,
handler: {self in println("Foo")})
Mam kilka problemów w Xcode.
Dokumentacja mówi convenience init(title title: String!, style style: UIAlertActionStyle, handler handler: ((UIAlertAction!) -> Void)!)
Całe bloki / zamknięcia są w tej chwili trochę ponad moją głową. Każda sugestia jest mile widziana.
{alert in println("Foo")}
,{_ in println("Foo")}
i{println("Foo")}
również powinno działać.