我有一个函数,它接受两个参数,最后一个参数是一个回调闭包:
func myAsycTask(name: String,callback: @escaping ()->Void) { myQueue.async{ self.doTask(name) callback() } } func doTask(name: String) {...}
我想使第二个回调闭包参数可选.我试图将上面的函数重新定义为:
func myAsycTask(name: String,callback: @escaping ()->Void? = nil) { myQueue.async{ self.doTask(name) callback() } }
我收到编译器错误:
Nil default argument value of cannot be converted to type ‘
() ->
‘
我怎样才能实现我所需要的呢?
解决方法
您当前的代码意味着Void是闭包中的可选返回(这没有多大意义,因为Void已经没有了).您应该将参数括在括号中,然后将其设置为可选.
func myAsycTask(name: String,callback: (() -> Void)? = nil)