无法使用类型为“((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的主要内容,如果未能解决你的问题,请参考以下文章
无法使用类型为“(UInt32)”的参数列表调用类型“CGBitmapInfo”的初始化程序