自Swift 2.2(随Xcode 7.3提供)以来,声明如下:
button.selectionHandler = { (CNPPopupButton button) -> Void in
应该
button.selectionHandler = { (button : CNPPopupButton) -> Void in
确实感觉更像是斯威夫特.如果您不想确定类型,也可以使用简写语法:
button.selectionHandler = { button in