在我的项目中,我添加了一个名为NewWindow
的额外NSWindowController。现在我想添加一个按钮来隐藏/查看wimdow。我的代码如下。
#import "AppDelegate.h"
#import "NewWindow.h"
@interface AppDelegate ()
@property (weak) IBOutlet NSView *view;
- (IBAction)showNewWindow:(id)sender;
@end
@implementation AppDelegate
{
NewWindow *newWindow;
BOOL isNewWindowLoad;
}
-(id)init
{
self = [super init];
if(self)
{
newWindow = [[NewWindow alloc] init];
}
return self;
}
- (IBAction)showNewWindow:(id)sender
{
if(!isNewWindowLoad)
{
[newWindow loadWindow];
isNewWindowsLoad = YES;
}
else
{
[[newWindow window] close];
isNewWindowLoad = NO;
}
}
@end
窗口可以加载,但不能隐藏。 任何人都可以告诉我该怎么做?通过点击按钮来控制窗口加载/隐藏。
答案 0 :(得分:1)
调用orderOut
隐藏窗口。它仍然存在,您可以致电orderFront
或makeKeyAndOrderFront
再次展示。