Я представляю користувачеві a, UIAlertView
і я не можу зрозуміти, як написати обробник. Це моя спроба:
let alert = UIAlertController(title: "Title",
message: "Message",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Okay",
style: UIAlertActionStyle.Default,
handler: {self in println("Foo")})
Я отримую купу питань у Xcode.
У документації йдеться convenience init(title title: String!, style style: UIAlertActionStyle, handler handler: ((UIAlertAction!) -> Void)!)
Наразі цілі блоки / закриття трохи над головою. Будь-яка пропозиція високо цінується.
{alert in println("Foo")}
,,{_ in println("Foo")}
і{println("Foo")}
також повинні працювати.