带有建议下拉菜单的 NSTextField
我没有实现我自己的,而是考虑重用现有的自定义 NSTextField,它支持建议下拉菜单 - 与浏览器中的下拉菜单相同,当您键入时,您会在下面看到建议列表。
你知道有什么好的吗?
谢谢你!
Instead of implementing my own, I am looking into reusing an existing custom NSTextField that has support for suggestions drop-down - Same as the one in the browser as you type you get a list of suggestions underneath.
Do you know any good ones?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们被称为完成。您仍然使用常规文本字段,但添加以下内容:
最大的问题是您需要提供可以自动完成的单词列表。
They're called completions. You still use a regular text field but add this:
The biggest problem is you need to provide the list of words that can be autocompleted.