NSApplication *thisApp = [NSApplication sharedApplication];
[thisApp activateIgnoringOtherApps:YES];
[self.window orderFrontRegardless];
我使用上面的代码使我的应用程序在需要显示窗口时获得焦点,我想让应用程序在隐藏窗口时失去焦点。
[self.window orderOut:self];
[self.window resignMainWindow];
[self.window resignKeyWindow];
上面的代码不能解决问题。我该怎么做?