通常在Swift中定义一个闭包来使用
typealias Closure= (Any?) -> ()var tempClosure :Closure?/// 定义一个方法直接调用func closure(_ closure:@escaping closure) { self.closure = closure}
上面就是我们经常使用闭包的方法,这个方法的弊端就是,在项目工程中typealias满天飞,到处都是定义的闭包,这个时候结合泛型对闭包做如下的修改
public typealias GenericClosure= (T) -> ()
这样定义之后我们在需要使用的时候就可以随意的定义闭包的参数类型了
var stringClosure:GenericClosure?var stringClosure:GenericClosure<(title:String,model:Any)>?var voidClosure:GenericClosure<()?>