NSStatusItem 始终保留?

发布于 2024-07-29 16:53:54 字数 267 浏览 5 评论 0原文

我正在开发一个在状态菜单上显示某些信息的应用程序,我想知道是否有任何 Cocoa API 可以使我的 NSStatusItem 始终放置在最左边,无论它何时启动或其他应用程序是否在之后启动它。

NSStatusBar *bar = [NSStatusBar systemStatusBar];
barItem = [[bar statusItemWithLength:NSVariableStatusItemLength] retain];

谢谢。

I'm working on an app that displays certain information on the status menu, and I was wondering if there's any Cocoa API that can make my NSStatusItem always placed on the most-left, no matter when it's started or if other apps are started after it.

NSStatusBar *bar = [NSStatusBar systemStatusBar];
barItem = [[bar statusItemWithLength:NSVariableStatusItemLength] retain];

Thanks.

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

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

发布评论

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

评论(1

岁月静好 2024-08-05 16:53:54

从字面上来说,如果两个应用程序使用这样的 API 会怎样? 他们会打架并从菜单栏的末端滚下来。 ☺

没有受支持的方法来执行此操作,但有 一种未记录/不受支持的方法来指定状态的“优先级”创建项目时。 当然,使用时请自行承担风险,并且请务必执行 respondsToSelector: 检查,以便在不支持的方式消失时退回到受支持的方式。

Taking you ultra-literally for a moment, what if two applications used such an API? They would fight and roll off the end of the menu bar. ☺

There is no supported way to do it, but there is an undocumented/unsupported way to specify the “priority” of the status item when you create it. Of course, use at your own risk, and be sure to do a respondsToSelector: check to fall back on the supported way if the unsupported way goes away.

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