如何将我的程序添加到 OS X 系统菜单栏?
我已经为 iTunes 创建了一个音量控制器,但我希望这个应用程序在 OS X 系统菜单栏上放置一个图标,并让我的滑块控制器下拉。
I have created a volume controller for iTunes but I would like this app to place an icon on the OS X system menu bar and have my slider controller drop down.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个 < code>NSStatusItem 在您的应用程序中。查看状态栏文档 。
通常,您可以通过将 Info.plist 文件中的
LSUIElement
键设置为YES
来创建不露面的后台应用程序,并让应用程序在启动时创建状态项。You need to create an
NSStatusItem
in your app. Have a look at the Status Bars documentation.You would normally create a faceless background app by setting the
LSUIElement
key in your Info.plist file toYES
and have the app create the status item on launch.