我需要一个在单击时保持按下状态的按钮。直到下一次点击。类似于 iOS 中的开/关按钮或 osx 中的复选框字段的行为。
谢谢
从文档:
表示可以使用 setButtonType: 指定的按钮类型。
enum {
NSMomentaryLightButton = 0,
NSPushOnPushOffButton = 1,
NSToggleButton = 2,
NSSwitchButton = 3,
NSRadioButton = 4,
NSMomentaryChangeButton = 5,
NSOnOffButton = 6,
NSMomentaryPushInButton = 7,
NSMomentaryPushButton = 0, // Deprecated, use NSMomentaryLightButton
NSMomentaryLight = 7, // Deprecated, use NSMomentaryPushInButton
};
typedef NSUInteger NSButtonType;