尝试使用 NSTextField 创建链接
我正在使用此类别(对吗?) http://www.nightproducts.net /references/dsclickableurltextfield_reference.html#setAttributedStringValue
实现可点击文本字段。我已将头文件导入到我的控制器类中,并将其属性字符串值设置为如下
NSAttributedString* str = [[NSAttributedString alloc] initWithString:@"http://www.yahoo.com"];
[url setAttributedStringValue:(NSAttributedString *)str];
[str release];
文本字段不可选择且不可编辑。
文本字段值已设置,但不可单击,也不是链接。
提前致谢。
I'm using this category (is that right?) http://www.nightproductions.net/references/dsclickableurltextfield_reference.html#setAttributedStringValue
to implement clickable textfields. I've imported the header file in my controller class and set it's attributed string value like this
NSAttributedString* str = [[NSAttributedString alloc] initWithString:@"http://www.yahoo.com"];
[url setAttributedStringValue:(NSAttributedString *)str];
[str release];
The text field is not selectable and not editable.
The text field value is set but it's not clickable and it's not a link.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了另一种在 NSTextField 中显示链接的简单方法。您可以使用 HTML。这是一个简短的示例:
现在您可以调用文本字段的方法:
I have found another easy way to show links in NSTextField. You can use HTML. Here is a short example:
Now you can call the method for text field: