NSStatusItem 始终保留?
我正在开发一个在状态菜单上显示某些信息的应用程序,我想知道是否有任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从字面上来说,如果两个应用程序使用这样的 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.