IFTweetLabel长URL的主要问题

时间:2012-07-17 14:07:49

标签: iphone url uilabel detection

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

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

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

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

由于

1 个答案:

答案 0 :(得分: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行的结尾)并检查整个字符串,直到它获得新的行字符。