可以在词典中存储闭包(我们如何在词典中存储ObjC块)?例:
data = [String:AnyObject]() data!["so:c0.onSelection"] = {() in Debug.log(.Debug,message: "Hello,World!") }
你可以,但有一些限制.首先,函数类型不会从AnyObject继承,并且不共享公共的基类.你可以有一个字典[String:() – > Void]和[String:(String) – > Int],但它们不能存储在同一个字典中.
原文链接:https://www.f2er.com/swift/319812.html我也必须使用一个typealias来定义字典,以便swift可以正确解析.这是一个基于您的代码段的示例.
typealias myClosure = () -> Void var data: [String: myClosure]? = [String: myClosure]() data!["so:c0.onSelection"] = {() -> Void in Debug.log(.Debug,World!") }