美文网首页
NSButton模拟按钮点击

NSButton模拟按钮点击

作者: 山抹微云_1921 | 来源:发表于2019-01-23 00:08 被阅读0次

    MacOS下,使用Obj-C模拟NSButton的点击事件。
    示例代码:

    NSButton *outputButton = self.outputModeView.subviews[sender.tag];
    [outputButton performClick:outputButton];
    //[outputButton performClick:nil];
    

    官方文档描述如下:


    官方文档描述

    相关文章

      网友评论

          本文标题:NSButton模拟按钮点击

          本文链接:https://www.haomeiwen.com/subject/ifudjqtx.html