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.
我如何知道 NSComboBox 当前是否打开了下拉列表?
这就是NSComboBoxDelegate协议的用途。
NSComboBoxDelegate
特别是方法comboBoxWillPopUp:,comboBoxWillDismiss: 应该给你你正在寻找的信息。
comboBoxWillPopUp:
comboBoxWillDismiss:
文档在这里。
还有一种方法,您也可以将操作方法连接到组合框。这样,每当您单击组合框操作方法时,都会被调用