如何强制 NSTextField 接受文本?

发布于 2024-09-29 05:21:18 字数 170 浏览 4 评论 0原文

我在首选项面板中有一个 NSTextField 。它提供了一个用于输入 url 的字段。 但是,如果用户在编辑字段中的文本后关闭“首选项”面板,则新值不会传播到用户默认值。仅当用户明确执行 Enter 或 Tab 操作后才会发生这种情况。
在我看来,这使得整个方法毫无用处,所以我想我一定做错了什么?

I have an NSTextField in a Preferences panel. It provides a field to enter a url in.
However, if the user closes the Preferences panel after editing the text in the field, the new value does not get propagated to the User Defaults. This only happens after the user explicitly does Enter or Tab.
This kind of makes the whole approach useless, it seems to me, so I guess I must be doing something wrong?

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

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

发布评论

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

评论(1

心安伴我暖 2024-10-06 05:21:18

我通过在窗口关闭时将firstResponder 设置为nil 来解决此问题。

[[self window] makeFirstResponder:nil];

I fix this by setting the firstResponder to nil when the window closes.

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