为nSTextStorage子类设置viewController的layoutManager时,字形索引无效

时间:2013-12-01 23:35:12

标签: ios objective-c textkit nslayoutmanager nstextstorage

我的目标是使用TextKit来斜体,设置某些单词的文本大小等。

首先,我只想在文本字符串中突出显示一个字符。作为TextKit的新手(以及一般的编程),我遵循obc.io问题#5的语法高亮主题。

当我使用内置于我创建的UITextView的NSLayoutManager时,我的文本出现在屏幕上,没有抛出异常。当我在我的视图控制器(下面)中将我的UITextView设置为我的NSTextStorage子类的布局管理器时,我收到了无效字形索引的异常错误。

_textStorage = [BBRSyntaxHighlightTextStorage new]; 
[_textStorage addLayoutManager: self.readerTextView.layoutManager];

控制台输出如下:

_NSLayoutTreeLineFragmentRectForGlyphAtIndex invalid glyph index 528
2013-12-01 15:23:24.949 BibleReader[6077:70b] !!! _NSGlyphTreeInvalidateGlyphsForCharacterRange invalid char range 1
2013-12-01 15:23:24.956 BibleReader[6077:70b] !!! _NSLayoutTreeLineFragmentRectForGlyphAtIndex invalid glyph index 528
2013-12-01 15:23:24.957 BibleReader[6077:70b] !!! _NSGlyphTreeInvalidateGlyphsForCharacterRange invalid char range 1
2013-12-01 15:23:24.957 BibleReader[6077:70b] !!! _NSGlyphTreeInvalidateGlyphsForCharacterRange character count mismatch
2013-12-01 15:23:24.958 BibleReader[6077:70b] !!! _NSLayoutTreeLineFragmentRectForGlyphAtIndex invalid glyph index 4040
2013-12-01 15:23:24.959 BibleReader[6077:70b] !!! _NSGlyphTreeInvalidateGlyphsForCharacterRange invalid char range 1

我已多次阅读Apple的文本编程指南,并认为我理解文本系统是如何建立的,但不知道为什么我的字形数量会超过字形数...

我分别为我的viewController和NSTextStorage子类herehere创建了gist。

1 个答案:

答案 0 :(得分:9)

看起来您的布局管理器未从其原始NSTextStorage对象中正确删除。在将布局管理器添加到自定义文本存储子类之前调用​​[self.readerTextView.textStorage removeLayoutManager:self.readerTextView.layoutManager]

一般情况下,我发现在将nib / xib / storyboard创建的UITextViews与TextKit对象的自定义子类混合时,TextKit无法正常运行。您可以通过覆盖UITextView上的- (id)awakeAfterUsingCoder:(NSCoder *)aDecoder并使用您想要的类构建文本系统来解决其中一些问题,但通常我建议坚持使用代码内自定义文本系统创建。