在 Cocoa 中创建信息弹出窗口/工具提示

发布于 2024-11-09 01:21:18 字数 143 浏览 0 评论 0原文

问题标题有点模糊,但我真的不知道这个东西叫什么。

我正在尝试创建那些黄色信息弹出窗口之一。任何人都可以告诉我它们叫什么以及如何创建它们?

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 技术交流群。

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

发布评论

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

评论(2

野生奥特曼 2024-11-16 01:21:18

这就是所谓的工具提示。您可以使用 setToolTip: 为任何 NSView 设置工具提示。

That's called a tool tip. You can set the tool tip for any NSView using setToolTip:.

鲸落 2024-11-16 01:21:18

如果您使用 NSTextView,您甚至可以在 NSTextstorage 中设置某个范围的属性,以显示工具提示。
像这样的东西:

[textStorage addAttribute:NSToolTipAttributeName
                    value:error.description
                    range:range];

If you are using NSTextView, you can even set an attribute for a certain range in NSTextstorage, that displays the Tooltip.
Something like:

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