使用按钮打开关于(应用程序名称)(Mac os x)

时间:2011-08-28 18:15:46

标签: objective-c macos about-box

我想知道是否可以在我的Mac应用程序中设置一个按钮,当您点击它时,它会打开关于(应用程序名称)窗口?

希望它有意义! :)

1 个答案:

答案 0 :(得分:2)

NSButton连接到File's Owner并选择orderFrontStandardAboutPanel:,如下所示:

enter image description here

修改

或者将NSButton直接连接到以下IBAction

- (IBAction)theButton:(id)sender {

    [NSApp orderFrontStandardAboutPanel:self];

 }