菜鸟教程小白 发表于 2022-12-12 19:52:51

ios - UITextView 链接突出显示,但在自定义 UITableViewCell 时不可点击


                                            <p><p> <img src="/image/Tt8vd.png" alt="enter image description here"/> </p>

<p>我在自定义 tableviewcell 中有这三个 TextView (层次结构的底部)。</p>

<p> <img src="/image/nkfC3.png" alt="enter image description here"/> </p>

<p>这是他们的设置。它们会突出显示正确的内容(电话号码、地址等),但不允许我点击它们。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以尝试手动创建您的 TextView 吗?下面的链接可以点击:</p>

<pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString* cellIdentify = @&#34;Cell&#34;;
UITableViewCell* cell = ;

if (!cell) {
    cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentify];
}

UITextView* textView = [ initWithFrame:CGRectMake(10, 10, 200, 50)];
textView.text = @&#34;12345678 http://haivl.com&#34;;
textView.dataDetectorTypes = UIDataDetectorTypeLink;
textView.editable = NO;
textView.selectable = YES;
;
return cell;
</code></pre>

<p>}</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITextView 链接突出显示,但在自定义 UITableViewCell 时不可点击,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22211652/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22211652/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITextView 链接突出显示,但在自定义 UITableViewCell 时不可点击