gpt4 book ai didi

ios - 如何在 UILabel 中启用超链接

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:39:34 25 4
gpt4 key购买 nike

我有一个 UILabel(加载了 html),我把它放在 UIScrollView 上。

在 html 中,我有很多链接在单击时无法“启动”。

我在 UILabelUIScrollview 上都添加了 UserInteractionEnabled = true 但我无法从超链接。

这是创建带有内容的标签的代码。

        var attr = new NSAttributedStringDocumentAttributes();
var nsError = new NSError();
attr.DocumentType = NSDocumentType.HTML;

var entry = "some text and url <a href='http://www.google.com'>url</a>";
var myHtmlData = NSData.FromString(entry, NSStringEncoding.Unicode);

contentLabel.AttributedText = new NSAttributedString(myHtmlData, attr, ref nsError);
contentLabel.Frame = new CGRect(0, 20, scrollView.Frame.Size.Width , scrollView.Frame.Size.Height);
contentLabel.LineBreakMode = UILineBreakMode.WordWrap;
contentLabel.Lines = 0;
contentLabel.SizeToFit();

也许这是错误的.. 将 html 内容放入标签中?但我不想使用 webview,因为它似乎不能很好地扩展。

最佳答案

为什么不改用 UITextView 呢?启用链接检测并禁用可编辑和 optional 。

关于ios - 如何在 UILabel 中启用超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34022241/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com