enumerateLineFragmentsForGlyphRange:withBlock:返回单词片段

时间:2014-09-25 00:11:54

标签: ios uitextview nslayoutmanager

我使用UITextView来显示一些文字。在列出文本时,我使用enumerateLineFragmentsForGlyphRange:withBlock:方法枚举文本行。

NSInteger shrunkNumberOfLines = 3;
__block NSMutableString *shortenedText = [NSMutableString new];
__block NSInteger currentLine = 0;
__block BOOL needsTruncation = NO;

[detailsTableViewCell.descriptionTextView.layoutManager enumerateLineFragmentsForGlyphRange:NSMakeRange(0, text.length) usingBlock:^(CGRect rect, CGRect usedRect, NSTextContainer *textContainer, NSRange glyphRange, BOOL *stop) {
  if (currentLine < shrunkNumberOfLines) {
    NSRange stringRange = ((glyphRange.length + glyphRange.location) <= text.length) ? glyphRange : NSMakeRange(glyphRange.location, (text.length - glyphRange.location));
            NSString *appendString = [text substringWithRange:stringRange];
            NSLog(@"%@", appendString);
            [shortenedText appendString:appendString];
            currentLine += 1;
  } else {
    needsTruncation = YES;
    *stop = YES;
  }
}];

但是,我遇到了一个奇怪的错误:通常情况下,在textview中显示的文本与我在appendString中看到的文本不一致。

例如,文本字段中的文字可能会出现如下内容:

President Obama offered a 
blueprint for deeper American
engagement in the Middle East.

...但是看看我的NSLog语句,那些appendStrings就像是:

President Obama offered a blu
eprint for deeper American en
gagement in the Middle East.

我尝试了很多东西 - 与hyphenationFactor一起玩,确保textContainerInsets是正确的等等 - 但我无法解决这个问题。在enumerateLineFragmentsForGlyphRange:withBlock:方法中导致无效换行的原因是什么?

1 个答案:

答案 0 :(得分:1)

虽然我仍然不确定导致上述根本问题的因素,但我至少找到了解决问题的方法:https://stackoverflow.com/a/19603172/686902