美文网首页
给NSButton添加点击事件

给NSButton添加点击事件

作者: SuperMan_Wang | 来源:发表于2018-12-26 15:16 被阅读85次

Mac开发中如何给NSButton添加点击事件呢?

Mac开发我们需要下面最后两行代码就可以了:

    NSButton *sure = [[NSButton alloc] initWithFrame:CGRectMake(120, 0, 80, 50)];
    [self.view addSubview:sure];
    [sure setTitle:@"设置URL"];

    [sure setTarget:self];
    [sure setAction:@selector(click)];

相关文章

网友评论

      本文标题:给NSButton添加点击事件

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