Swift – Closure不能有关键字参数错误在Xcode 7.3中

前端之家收集整理的这篇文章主要介绍了Swift – Closure不能有关键字参数错误在Xcode 7.3中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经更新到 Xcode 7.3,我的一些库包括Toast和CNPopupButton给了我这个错误
Closure不能有关键字参数

然后它要求我删除参数Type Name.

这可能是什么问题?

自Swift 2.2(随Xcode 7.3提供)以来,声明如下:
button.selectionHandler = { (CNPPopupButton button) -> Void in

应该

button.selectionHandler = { (button : CNPPopupButton) -> Void in

确实感觉更像是斯威夫特.如果您不想确定类型,也可以使用简写语法:

button.selectionHandler = { button in
原文链接:https://www.f2er.com/swift/319130.html

猜你在找的Swift相关文章