Swift中的Handler
当我们创建一个 UIAlertAction 的时候,我们可以把一个代码块指定为 handler
let callActionHandler = { (action:UIAlertAction!) -> Void in
printf("sth is wrong !")
}
其实在这里 打印语句可以看成一个Block;但那是Object-c时代的叫法 .在Swift中 叫"闭包"(可传递的功能代码块).
它的具体格式是:let Handler = {(action:UIalertAction!) -> Void in //"in"是个分界线 前边是定义的参数 后边是闭包内容}
时间: 2024-10-27 02:35:41