无法使用类型为“((AnyObject!,NSInteger,UnsafeMutablePointer<ObjCBool​​>)->())”的参数列表调用“enumerateObje

Posted

技术标签:

【中文标题】无法使用类型为“((AnyObject!,NSInteger,UnsafeMutablePointer<ObjCBool​​>)->())”的参数列表调用“enumerateObjects”【英文标题】:Cannot invoke 'enumerateObjects' with an argument list of type '((AnyObject!, NSInteger, UnsafeMutablePointer<ObjCBool>) -> ())' 【发布时间】:2016-09-20 10:19:20 【问题描述】:

我的项目在 Xcode 8 的这一行中遇到错误,而它在 Xcode 7 中运行良好。

(self.columnHeights[section] as AnyObject).enumerateObjects((object : AnyObject!, idx : NSInteger,pointer :UnsafeMutablePointer<ObjCBool>) 

错误

 Cannot invoke 'enumerateObjects' with an argument list of type '((AnyObject!, NSInteger, UnsafeMutablePointer<ObjCBool>) -> ())'

请指教。

【问题讨论】:

【参考方案1】:

在 Swift 3 中,大多数 AnyObject 类型已更改为 Any

(self.columnHeights[section] as AnyObject).enumerateObjects((object : Any, idx : Int, pointer :UnsafeMutablePointer<ObjCBool>) 

一如既往,我建议使用原生 Swift Array 而不是 Foundation NSArray 来利用特定类型信息。

【讨论】:

以上是关于无法使用类型为“((AnyObject!,NSInteger,UnsafeMutablePointer<ObjCBool​​>)->())”的参数列表调用“enumerateObje的主要内容,如果未能解决你的问题,请参考以下文章

无法使用类型为“”的参数列表调用类型“”的初始化程序

无法使用类型为 '(Codable.Type?

Constraint 无法解析为类型

无法使用类型为“(UInt32)”的参数列表调用类型“CGBitmapInfo”的初始化程序

无法使用“Any?”类型的索引为“[AnyHashable:Any]”类型的值下标

无法使用“Int”类型的索引为“[String : String]”类型的值下标