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)];
网友评论