当焦点位于字段上时删除的 NSTextField / NSSearchField 默认值

发布于 2024-12-19 18:31:26 字数 263 浏览 2 评论 0原文

我希望为 NSTextField (或 NSSearchField)设置一个默认值,并在用户单击它时删除该默认值,并在文本视图丢失时设置该默认值。焦点且文本字段为空。像这样:

http://imgur.com/T03vE

听起来我应该扩展 NSSearchField但我想知道是否有更简单的解决方案。

I would like to have a default value for a NSTextField (or NSSearchField) and have this default value removed when the user clicks on it and set back when the text view loses the focus and the text field is empty. Like this:

http://imgur.com/T03vE

It sounds like I should extend NSSearchField but I was wondering if there was an easier solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

—━☆沉默づ 2024-12-26 18:31:26

该功能实际上是内置的;无需子类化或以其他方式扩展 NSSearchField

这是该字段的 占位符字符串。您可以在 IB 中或通过调用 setPlaceholderString:。请注意,这是 NSTextFieldCell 的一个方法。 NSTextField 是其单元格的“公共面孔”,并且具有几乎所有单元格功能的覆盖方法。但是,在这种情况下,您需要将消息直接发送到单元格:

[[field cell] setPlaceholderString:@"Jumbo jets"];

因为 NSSearchFieldNSSearchFieldCell 继承自 NSTextFieldNSTextFieldCell 分别,他们的过程是相同的。

This functionality is in fact built-in; there's no need to subclass or otherwise extend NSSearchField.

That's the field's placeholder string. You can set it either in IB or via a call to setPlaceholderString:. Notice that this is a method of NSTextFieldCell. An NSTextField is the "public face" of its cell, and has cover methods for almost all of the cell's functionality. In this case, however, you need to send the message directly to the cell:

[[field cell] setPlaceholderString:@"Jumbo jets"];

Since NSSearchField and NSSearchFieldCell inherit from NSTextField and NSTextFieldCell, respectively, the process is the same for them.

記柔刀 2024-12-26 18:31:26

设置 NSTextFields 的 NSTextFieldCell 上的占位符字符串

使用[[textField cell] setPlaceholderString:@"String Matching"];

Set the place holder string on the NSTextFields's NSTextFieldCell using

[[textField cell] setPlaceholderString:@"String Matching"];

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