我创建了该应用程序,该应用程序有时会显示带有标签和文本框的叠加层。它工作得很好,但即使其他应用程序处于全屏模式并处于活动状态,我也需要它来工作。
对于覆盖,我创建了自定义窗口类并覆盖了canBecomeKeyWindow
方法,让无边框窗口成为键窗口(仅返回YES
)。
所以它可以工作,但是当我运行例如 Minecraft,然后全屏显示时,我的叠加层可以覆盖它。但是我无法在覆盖层中输入NSTextField。如何解决?
我正在创建一个这样的叠加层:
[[NSWorkspace sharedWorkspace] hideOtherApplications];
NSRect frame = [[NSScreen mainScreen] frame];
_fadedWindow = [[CustonWindow alloc] initWithContentRect:frame
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO];
[_fadedWindow setAcceptsMouseMovedEvents:YES];
[_fadedWindow setOpaque:NO];
[_fadedWindow setLevel:CGShieldingWindowLevel()];
[_fadedWindow setBackgroundColor:[NSColor colorWithDeviceRed:0.0 green:0.0 blue:0.0 alpha:0.8]];
NSApplicationPresentationOptions options = NSApplicationPresentationDisableProcessSwitching + NSApplicationPresentationHideDock + NSApplicationPresentationDisableForceQuit + NSApplicationPresentationDisableSessionTermination + NSApplicationPresentationDisableHideApplication;
[NSApp setPresentationOptions:options];
_fadedWindow.alphaValue = 0;
[_fadedWindow orderFrontRegardless];
[[_fadedWindow animator] setAlphaValue:1];
[_fadedWindow toggleFullScreen:self];
[_fadedWindow makeKeyAndOrderFront:self];
[NSApp activateIgnoringOtherApps:YES];
[_fadedWindow orderFront:self];
但是,我似乎仍然无法使用键盘输入填充覆盖层的NSTextField。
试试这个。为_fadedWindow创建子类。然后把它放进去:
-(BOOL)canBecomeKeyWindow {
return YES;
}