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

ios - 在 TTTAttributedLabel 中获取点击 URL 的文本部分


                                            <p><p>我需要<code>TTTAttributedLabel</code>点击部分的文字:</p>

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

    // Attributed Message Label
    NSMutableAttributedString *messageTextAttr =;

    cell.messageText.attributedText = messageTextAttr;
    cell.messageText.delegate = self;

    [messageTextAttr enumerateAttribute:NSLinkAttributeName inRange:NSMakeRange(0, messageTextAttr.length) options:0 usingBlock:^(id value, NSRange range, BOOL *stop) {
      if (value) {
             withRange:range];
      }
    }];

    ...
}

// click event
- (void)attributedLabel:(TTTAttributedLabel *)label didSelectLinkWithURL:(NSURL *)url {
    NSLog(@&#34;link %@&#34;, );
    NSLog(@&#34;whole label %@&#34;, label);
}
</code></pre>

<p>但我只有链接和整个标签,但没有点击的部分(点击的文本部分)。我怎样才能得到它?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我能想到的唯一解决方案是实现 <code>attributedLabel: didSelectLinkWithTextCheckingResult:</code> 而不是 <code>attributedLabel: didSelectLinkWithURL:</code>。</p>

<p>它的好处是 <code>NSTextCheckingResult</code> 包含一个 <strong>range</strong> 属性,您可以使用它来查找实际点击的文本(不是 URL)。</p>

<pre><code>- (void)attributedLabel:(TTTAttributedLabel *)label didSelectLinkWithTextCheckingResult:(NSTextCheckingResult *)result {

    NSString* textClicked = ;

    //Get the URL and perform further actions
    NSURL* urlClicked = result.URL;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 TTTAttributedLabel 中获取点击 URL 的文本部分,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36595707/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36595707/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 TTTAttributedLabel 中获取点击 URL 的文本部分