让 Cocoa 应用程序保持在全屏应用程序之上

发布于 2024-12-22 08:59:30 字数 431 浏览 1 评论 0原文

我正在开发一个具有状态菜单的应用程序,用户可以从该菜单打开该应用程序的主窗口。我希望能够在全屏应用程序之上打开此窗口。如果应用程序是代理(UIElement)设置为YES,以下代码可以正常工作:

- (IBAction)showMainWindow:(id)sender
{
   [_window makeKeyAndOrderFront:self];
   [NSApp activateIgnoringOtherApps:YES];
}

但是,我也希望在停靠栏中有一个图标。如果应用程序是代理(UIElement)设置为NO,showMainWindow会导致应用程序跳转到不同的空间,而不是出现在活动的全屏应用程序的顶部。有解决办法吗?

I'm working on an app that has a status menu and from that menu user can open the app's main window. I want the ability to open this window on top of the full screen apps. The following code works fine if Application is agent (UIElement) is set to YES:

- (IBAction)showMainWindow:(id)sender
{
   [_window makeKeyAndOrderFront:self];
   [NSApp activateIgnoringOtherApps:YES];
}

However, I want to have an icon in the dock as well. If Application is agent (UIElement) is set to NO showMainWindow causes the app to jump to a different space rather than appearing on top of the active full screen app. Is there a solution to this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美羊羊 2024-12-29 08:59:30

为了完整起见,我在这里回答我自己的问题。

经过更多研究后发现,没有办法解决这个问题。这就是 OS X 的工作方式。

我的解决方案:我在应用程序首选项中为用户提供了一个选项,无论他们希望应用程序是停靠类型应用程序还是代理类型。在主 plist 中将应用程序是代理 (UIElement) 设置为 YES。您可以通过将应用程序激活策略设置为 NSApplicationActivationPolicyRegular 在运行时更改应用程序类型。

I'm answering my own question here for the sake of completeness.

After little more research turns out there is no way around it. It just the way OS X works.

My solution: I gave user an option in app preferences whether they want the app to be a dock type app or the agent type. Set the Application is agent (UIElement) to YES in main plist. You can change the app type during runtime by setting the app activation policy to NSApplicationActivationPolicyRegular.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文