在 Cocoa 中创建信息弹出窗口/工具提示
问题标题有点模糊,但我真的不知道这个东西叫什么。
我正在尝试创建那些黄色信息弹出窗口之一。任何人都可以告诉我它们叫什么以及如何创建它们?
The question title is kind of vague, but I really don't know what the thing is called.
I am trying to create one of those yellow informational popup things. Anyone can tell me what they're called and how I can create them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是所谓的工具提示。您可以使用
setToolTip:
为任何NSView
设置工具提示。That's called a tool tip. You can set the tool tip for any
NSView
usingsetToolTip:
.如果您使用 NSTextView,您甚至可以在 NSTextstorage 中设置某个范围的属性,以显示工具提示。
像这样的东西:
If you are using NSTextView, you can even set an attribute for a certain range in NSTextstorage, that displays the Tooltip.
Something like: