NSButton模拟按钮点击
2019-01-23 本文已影响0人
山抹微云_1921
MacOS下,使用Obj-C模拟NSButton的点击事件。
示例代码:
NSButton *outputButton = self.outputModeView.subviews[sender.tag];
[outputButton performClick:outputButton];
//[outputButton performClick:nil];
官方文档描述如下:
官方文档描述
MacOS下,使用Obj-C模拟NSButton的点击事件。
示例代码:
NSButton *outputButton = self.outputModeView.subviews[sender.tag];
[outputButton performClick:outputButton];
//[outputButton performClick:nil];
官方文档描述如下: