gpt4 book ai didi

objective-c - 如何只打开一个窗口 "Preferences"?

转载 作者:行者123 更新时间:2023-12-01 22:43:29 25 4
gpt4 key购买 nike

我的应用程序有首选项窗口。我用这段代码打开它

- (IBAction)openPreferences:(id)sender {

NSWindowController *windowController = [[NSWindowController alloc] initWithWindowNibName:@"Preferences"];
[windowController window];
}

如果按命令,一次又一次,新的首选项窗口将一次又一次地打开...

如何只打开一个窗口?谢谢!

最佳答案

使 windowController 成为您的 AppDelegate 的实例变量并将您的打开首选项更改为

- (IBAction)openPreferences:(id)sender
{
if( windowController == nil )
windowController = [[NSWindowController alloc] initWithWindowNibName:@"Preferences"];
[windowController showWindow:sender];
}

关于objective-c - 如何只打开一个窗口 "Preferences"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7499135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com