我想知道是否可以在我的Mac应用程序中设置一个按钮,当您点击它时,它会打开关于(应用程序名称)窗口?
希望它有意义! :)
答案 0 :(得分:2)
将NSButton
连接到File's Owner
并选择orderFrontStandardAboutPanel:
,如下所示:
修改强>
或者将NSButton
直接连接到以下IBAction
:
- (IBAction)theButton:(id)sender {
[NSApp orderFrontStandardAboutPanel:self];
}