菜鸟教程小白 发表于 2022-12-13 12:11:26

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


                                            <p><p>我拥有的是一个 <code>UILabel</code>(加载了 html),我将它放在 <code>UIScrollView</code> 上。</p>

<p>在 html 中,我有很多点击时无法“启动”的链接。</p>

<p>我在 <code>UILabel</code> 和 <code>UIScrollview</code> 上都添加了 <strong>UserInteractionEnabled = true</strong> 但我无法从点击中得到任何反应超链接。</p>

<p>这是创建带有内容的标签的代码。 </p>

<pre><code>      var attr = new NSAttributedStringDocumentAttributes();
      var nsError = new NSError();
      attr.DocumentType = NSDocumentType.HTML;

      var entry = &#34;some text and url &lt;a href=&#39;http://www.google.com&#39;&gt;url&lt;/a&gt;&#34;;
      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();
</code></pre>

<p>也许这是错误的.. 将 html 内容放入标签中?但我不想使用 webview,因为它似乎不能很好地扩展。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>为什么不使用 UITextView 呢?启用链接检测并禁用可编辑和 optional 。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 UILabel 中启用超链接,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34022241/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34022241/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 UILabel 中启用超链接