NSTextView 中的补全

发布于 2024-12-03 02:31:59 字数 143 浏览 1 评论 0原文

我正在寻找一种方法(或代码)来使完成列表接近 xcode 的列表 xcode Completion

你知道如何实现这一点吗?

谢谢和问候,

I am looking for a way (or code) to have a completion list close to the one of xcode
xcode completion

Do you know how to achieve this?

Thanks and regards,

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

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

发布评论

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

评论(1

如痴如狂 2024-12-10 02:31:59

使用

- (NSArray *)textView:(NSTextView *)textView completions:(NSArray *)words forPartialWordRange:(NSRange)charRange indexOfSelectedItem:(NSInteger *)index

NSTextViewDelegate的方法。每当启动文本完成时都会调用此函数(无论是由用户按 Esc 或 F5,还是以编程方式通过调用 -[NSTextViewcomplete:])。

您需要执行一些奇特的覆盖来使然而,它看起来像 Xcode 中的那样,仅以系统字体显示纯文本。

Use the

- (NSArray *)textView:(NSTextView *)textView completions:(NSArray *)words forPartialWordRange:(NSRange)charRange indexOfSelectedItem:(NSInteger *)index

method of NSTextViewDelegate. This is called whenever text completion is initiated (either by the user, by pressing Esc or F5, or programmatically, by calling -[NSTextView complete:].

You'll need to do some fancy overriding to make it look like the one in Xcode, however. The stock implementation displays only plain text in the system font.

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