如何精确计算文本所占的行数

Posted miaocunfa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何精确计算文本所占的行数相关的知识,希望对你有一定的参考价值。

如何精确计算文本所占的行数

ios 开发过程中,需要计算一段文字所占的行数,试了几种方式都很难准确计算。

通过coreText 框架,去精确计算一段文本所占的行数。

- (NSArray *)getLinesArrayOfStringInLabel:(NSString *)string font:(UIFont *)font andLableWidth:(CGFloat)lableWidth{
    
    CTFontRef myFont = CTFontCreateWithName(( CFStringRef)([font fontName]), [font pointSize], NULL);
    NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:string];
    [attStr addAttribute:(NSString *)kCTFontAttributeName value:(__bridge  id)myFont range:NSMakeRange(0, attStr.length)];
    CFRelease(myFont);
    CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString(( CFAttributedStringRef)attStr);
    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddRect(path, NULL, CGRectMake(0,0,lableWidth,100000));
    CTFrameRef frame = CTFramesetterCreateFrame(frameSetter, CFRangeMake(0, 0), path, NULL);
    NSArray *lines = ( NSArray *)CTFrameGetLines(frame);
    NSMutableArray *linesArray = [[NSMutableArray alloc]init];
    for (id line in lines) {
        CTLineRef lineRef = (__bridge  CTLineRef )line;
        CFRange lineRange = CTLineGetStringRange(lineRef);
        NSRange range = NSMakeRange(lineRange.location, lineRange.length);
        NSString *lineString = [string substringWithRange:range];
        CFAttributedStringSetAttribute((CFMutableAttributedStringRef)attStr, lineRange, kCTKernAttributeName, (CFTypeRef)([NSNumber numberWithFloat:0.0]));
        CFAttributedStringSetAttribute((CFMutableAttributedStringRef)attStr, lineRange, kCTKernAttributeName, (CFTypeRef)([NSNumber numberWithInt:0.0]));
        [linesArray addObject:lineString];
    }
    
    CGPathRelease(path);
    CFRelease( frame );
    CFRelease(frameSetter);
    return (NSArray *)linesArray;
}

参考

以上是关于如何精确计算文本所占的行数的主要内容,如果未能解决你的问题,请参考以下文章

word count

“精确提取返回的行数超过了请求的行数”

如何计算文本在 JTextArea 中的行数(以及每行中的列数)?

当我已经使用游标时,为啥我得到“精确提取返回的行数超过请求的行数”?

如何计算java中textArea中段落的行数? [复制]

PL/SQL ORA-01422:精确提取返回的行数超过了请求的行数