gpt4 book ai didi

objective-c - CTLineGetStringRange 和 CTLineGetGlyphCount 返回的行中字符数错误

转载 作者:行者123 更新时间:2023-11-29 04:36:35 24 4
gpt4 key购买 nike

我有一个应用程序,我使用 CoreText 来绘制文本突出显示。它工作得很好,除了当我尝试使用 CTLineGetStringRange 获取一行中的字符数时,它通常会给我一个比实际更大的数字。例如,在包含 156 个字符的行中,范围长度为 164。CTLineGetGlyphCount返回相同的数字。

有人知道为什么会发生这种情况吗?我用来创建框架 setter 的 NSAttributedString 使用与我的 UITextView 完全相同的字体。

这是我的代码:

// Build the attributed string from our text data and string attribute data
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:self.text attributes:self.attributes];

// Create the Core Text framesetter using the attributed string
_framesetter = CTFramesetterCreateWithAttributedString((__bridge CFAttributedStringRef)attributedString);
// Create the Core Text frame using our current view rect bounds
UIBezierPath *path = [UIBezierPath bezierPathWithRect:self.bounds];
_frame = CTFramesetterCreateFrame(_framesetter, CFRangeMake(0, 0), path.CGPath, NULL);

NSArray *lines = (__bridge NSArray *) CTFrameGetLines(_frame);
for (int i = 0; i < lines.count; i++) {
CTLineRef line = (__bridge CTLineRef) [lines objectAtIndex:i];
CFRange lineRange = CTLineGetStringRange(line);
NSLog(@"lineRange: %ld, %ld", lineRange.location, lineRange.length);
CFIndex glyphCount = CTLineGetGlyphCount(line);
NSLog(@"glyphCount: %ld", glyphCount);
}

我的类是 UIView 的子类,它作为 subview 添加到 UITextView 子类的实例中。

编辑:这是我正在测试的示例字符串:

textView.text = @"Marvel's The Avengers is a 2012 American superhero film produced by Marvel Studios and distributed by Walt Disney Pictures, based on the Marvel Comics superhero team of the same name.";

在这种情况下,第一行包含
《漫威复仇者联盟》是一部 2012 年美国 super 英雄电影,由漫威影业制作、华特迪士尼影业发行,改编自全长 137 个字符的《复仇者联盟》。但它给了我一个长度为 144 的线的范围。

但是,当我尝试使用以下文本时,结果有所不同:

textView.text = @"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.";

现在第一行包含
“Lorem ipsum dolor sat amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut Labore et dolore magna aliqua.Ut enim ad minim”,长度为 142。但这里它给了我长度为 142 的正确范围。

然后我尝试了更多文本:

文字:“阿斯加德洛基遇到了异者,一个被称为奇塔瑞的外星种族的领导者。作为取回宇宙立方(一种潜力未知的强大能源)的交换条件,异者向洛基 promise 一支奇塔瑞军队,他可以用它征服地球。”
结果:“阿斯加德洛基遇到了另一个人,一个被称为 Chitauri 的外星种族的领导者。作为交换,取回了长度为 145 的强大的宇宙立方。
线路范围长度: 145

文字:“斯塔克和罗杰斯意识到,对于洛基来说,仅仅击败他们是不够的;他需要公开压制他们,以证明自己是地球的统治者。”
结果:“斯塔克和罗杰斯意识到,对于洛基来说,仅仅击败他们是不够的;他需要公开击败他们,以证明自己是统治者”,长度为 146。
线路范围长度:149

正如您所见,有时它是正确的,有时则不是。我找不到解释。

最佳答案

我根据this answer中给出的提示解决了问题.

看起来,因为 UITextView 继承自 UIScrollView,所以它在每个边缘都有一个 8 像素的插入。这意味着我的内部 UIView 的文本空间比我的 UITextView 宽 16 像素,有时这种差异意味着它可以在换行之前再容纳一个单词,这给出了该行中错误的字符数。

因此,从 View 宽度中减去 16 像素解决了我的问题。

但是,这只是我解决方案的一部分。另一部分是从核心文本中我的属性字符串中删除字偶距和连字:

CFAttributedStringSetAttribute(string, textRange, kCTKernAttributeName, (__bridge CFTypeRef)([NSNumber numberWithFloat:0.0]));
CFAttributedStringSetAttribute(string, textRange, kCTLigatureAttributeName, (__bridge CFTypeRef)([NSNumber numberWithInt:0]));

现在线条完美契合。

关于objective-c - CTLineGetStringRange 和 CTLineGetGlyphCount 返回的行中字符数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10997220/

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