OS X:在哪里显示菜单项的工具提示
对于 Windows 应用程序,如果将鼠标悬停在状态栏中,则会在状态栏中显示菜单项的详细描述,这是很常见的。在 Mac 应用程序中哪里可以显示类似信息?
For Windows applications it is quite common to show verbose descriptions of menu items in the status bar if hovering over them. Where to show similar information in Mac applications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用过的大多数 Mac 应用程序都没有菜单项工具提示。但如果有的话,它们就在菜单项附近,而且通常不会那么冗长。您可以在设计时在菜单笔尖中提供工具提示文本,或者在运行时通过调用 -[NSMenuItem setToolTip:] 来提供工具提示文本,操作系统将确定工具提示的放置位置。
Most Mac apps I've used don't have menu item tool tips. But if they do, they're near the menu item, and usually not that verbose. You can provide the tool tip text at design time in the menu nib, or at run time by calling
-[NSMenuItem setToolTip:]
, and the OS determines where to place the tool tip.