NSTextView的automaticLinkDetectionEnabled方法是如何工作的?

发布于 2024-10-12 12:42:23 字数 736 浏览 7 评论 0原文

我正在以编程方式设置 NSTextView:

    NSTextView *infoTextView = [[NSTextView alloc] initWithFrame:insetRect];
[infoTextView setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
    [infoTextView setBackgroundColor:[NSColor clearColor]];
    [infoTextView setTextContainerInset:NSZeroSize];
    [infoTextView setEditable:YES];
    [infoTextView setSelectable:YES];
    [infoTextView setAutomaticLinkDetectionEnabled:YES];

我的目标是 10.6,并且认为automaticLinkDetectionEnabled 意味着当用户键入作为网站地址的字符串时,NSTextView 会将其格式化为蓝色、下划线,并使其成为可点击的链接。那不会发生。它只是作为纯文本读取。我没有对 textView 的 textStorage 进行格式化。

该文档写道:

'自动链接检测原因 表示输入的 URL 的字符串 视图会自动变成 指向这些 URL 的链接。'

我还需要做什么?

I'm setting up an NSTextView programmatically:

    NSTextView *infoTextView = [[NSTextView alloc] initWithFrame:insetRect];
[infoTextView setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
    [infoTextView setBackgroundColor:[NSColor clearColor]];
    [infoTextView setTextContainerInset:NSZeroSize];
    [infoTextView setEditable:YES];
    [infoTextView setSelectable:YES];
    [infoTextView setAutomaticLinkDetectionEnabled:YES];

I'm targeting 10.6, and thought that automaticLinkDetectionEnabled meant that when the user typed a string that was a website address, NSTextView would format it blue color, underlined, and make it a clickable link. that doesn't happen. its just read as plain text. i have no formatting on the textView's textStorage.

the doc reads:

'Automatic link detection causes
strings representing URLs typed in the
view to be automatically made into
links to those URLs.'

what else do i need to do?

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

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

发布评论

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

评论(2

青巷忧颜 2024-10-19 12:42:23

设置文本后执行以下操作:

[infoTextView checkTextInDocument:nil];

这将遍历视图中的所有文本,并将此时的所有 url 转换为链接。

After the text is set do:

[infoTextView checkTextInDocument:nil];

This will go through all the text in the view and convert any url's to links at that point.

三生一梦 2024-10-19 12:42:23

回答我自己的问题,以防地球上有人犯了与我相同的错误:

在核心数据应用程序中,具有属性“注释”,如 Entity.notes 中,如果将注释设置为二进制类型,然后在 NSTextView 上使用 IB 绑定进行 AttributedString 绑定(不要使用 Values 绑定),并使用内置 NSTransformer:NSKeyedUnarchiveFromData、Inspector for Smart Links 等上的复选框来设置自动链接检测。
您也可以通过编程方式执行此操作。

我的笔记属性为“字符串”,并且还绑定到“值”。

双双哦......

answering my own question in case there is someone else on the planet who made the same mistake i did:

in a core data app, with a property 'notes', as in Entity.notes, if you set notes as binary type, and then use IB binding on an NSTextView for AttributedString binding, (do not use the Values binding), and use the built-in NSTransformer: NSKeyedUnarchiveFromData, the check boxes on the Inspector for Smart Links et al, work to setup the automatic link detection.
you may do that programmatically as well.

i had my notes property as 'string', and also was binding to 'value'.

double d'oh.....

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