3

以下开源主要用于超链接网址,电话号码。等/ https://github.com/clawoo/IFTweetLabel

但是这个开源有一个主要问题是如果太长(超过 1 行)它永远不会超链接

我尝试使用以下网址,它只超链接第一行而不是 3 行 http://2.bp.blogspot.com/_wuODgRtiCUY/TO2W2EqC2hI/AAAAAAAAAEA/PbwTm9Cl8As/s1600/Shining-Apple-Logo-759135.jpg

请发布一些解决方案或任何其他好的开源。

谢谢

4

1 回答 1

0

刚刚得到解决方案。

注释掉代码:

//BOOL breakWidth = NO;

/*if (currentSize.width > frame.size.width)
{
// the width of the text in the frame caused the line to break
    //NSLog(@"------ scanText = '%@', currentSize = %@", scanText,       
    //NSStringFromCGSize(currentSize));
      breakWidth = YES;

  }*/

现在它不会检查字符串的宽度(或 1 行的结尾),而是会检查整个字符串,直到它得到新的行字符。

于 2013-11-29T08:14:57.260 回答