我最近开始研究 NSAtributedString 是如何工作的。我正在使用 NSAtributedString 构建类似于富文本编辑器的东西。我有一个自定义编写的 CustomRichTextEditor:UITextView ,我想使用下面的代码覆盖 NSAtributedString 的默认属性:
UIFont *font = [UIFont systemFontOfSize:24.0];
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:font,NSFontAttributeName,[UIColor darkGrayColor],NSForegroundColorAttributeName,nil];
NSMutableAttributedString* attrStr = [self.richTextEditor.attributedText mutableCopy];
[attrStr setAttributes:attributes
range:NSMakeRange(0, self.richTextEditor.attributedText.string.length-1)
];
self.richTextEditor.attributedText = attrStr;
但是,因为我的编辑器是空的并且范围未知,所以我崩溃并出现错误:
由于未捕获的异常“NSRangeException”而终止应用程序,原因:“NSMutableRLEArray replaceObjectsInRange:withObject:length:: Out of bounds”
当范围未知时,如何正确设置 NSAtributedString 的字体和颜色?