“'NSOffState' is unavailable in Swift”

梦想的初衷 提交于 2019-12-05 05:24:49

First ⌥-click on state you will see

The type of state has been changed to NSControl.StateValue, that's clearly an enum or a struct.

So just type . and use code completion


PS: if item is NSButton you can safely write

let checkbox = item as! NSButton

or still better use optional bindings

if let checkbox =  item as? NSButton { ...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!