Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 NSxxx 类型的控件。这是 OS X 项目。
我希望看到“名称”和“类型”字段之间的下拉控件“事件”以及控件库事件列表。
为什么我看不到呢?
大多数 NSControl 子类对象都很简单,您只需响应 @IBAction,这就是“事件”。对于更复杂的控件,您可以为委托创建出口,有时也可以为数据源创建出口(例如 NSTableView)。
您的问题表明您正在使用 NSSlider,这可能最好在 Xcode 中使用绑定,而不是 IBActions。