我向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")}
也应该起作用。