如何强制 NSTextField 接受文本?
我在首选项面板中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过在窗口关闭时将firstResponder 设置为nil 来解决此问题。
I fix this by setting the firstResponder to nil when the window closes.