gpt4 book ai didi

ios - 来自 CoreText 的 attributedString 的 LineCount 是错误的

转载 作者:行者123 更新时间:2023-11-29 00:18:29 34 4
gpt4 key购买 nike

来自 CoreText 基金会的属性字符串的行数似乎是错误的。我使用以下代码提取属性字符串中应存在的行数。

 - (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:@"\nMe and Me\n" attributes:nil];
CGPathRef path = CGPathCreateWithRect(CGRectMake(0, 0, 335, 1000000), nil);
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((__bridge CFAttributedStringRef)attributedString);
CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0,0), path, NULL);
NSLog(@"%ld", numberOfLines(frame));


}

static CFIndex numberOfLines(CTFrameRef frame) {
CGRect bounds = CGRectNull;
CFArrayRef lines = CTFrameGetLines(frame);
CFIndex numLines = CFArrayGetCount(lines);
CGPoint *lineOrigins = malloc((numLines + 1) * sizeof(CGPoint));
CTFrameGetLineOrigins(frame, CFRangeMake(0, 0), lineOrigins);
return numLines;
}

我预计要返回的行数等于三。一个用于第一个换行符,一个用于文本“Me and Me”,一个用于最后一个换行符。知道为什么它会返回 2 吗?

最佳答案

它只是使用常见的定义,即一行由零个或多个字符以换行符终止

您可以将该行为与在终端中运行的标准wc(字数统计)命令进行比较。在您的示例文本中,它报告 2 行、3 个单词和 11 个字符。在最后一个换行符和文件末尾之间添加字符会增加单词和字符数,但行数仍保持在 2。

HTH

关于ios - 来自 CoreText 的 attributedString 的 LineCount 是错误的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44683156/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com