我有一个UITextView
,当用户在其中输入文本时,我想即时格式化文本。语法高亮之类的东西...
为此,我想使用UITextView
...
一切正常,但有一个问题:我从文本视图中获取文本并从中NSAttributedString
提取。我对此属性字符串进行了一些编辑,并将其设置回textView.attributedText
.
每次用户键入时都会发生这种情况。所以我必须记住selectedTextRange
编辑之前的attributedText
并在之后将其设置回来,以便用户可以在他之前输入的位置继续输入。唯一的问题是,一旦文本足够长需要滚动,UITextView
如果我输入缓慢,现在将开始滚动到顶部。
这是一些示例代码:
- (void)formatTextInTextView:(UITextView *)textView
{
NSRange selectedRange = textView.selectedRange;
NSString *text = textView.text;
// This will give me an attributedString with the base text-style
NSMutableAttributedString *attributedString = [self attributedStringFromString:text];
NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"#(\\w+)" options:0 error:&error];
NSArray *matches = [regex matchesInString:text
options:0
range:NSMakeRange(0, text.length)];
for (NSTextCheckingResult *match in matches)
{
NSRange matchRange = [match rangeAtIndex:0];
[attributedString addAttribute:NSForegroundColorAttributeName
value:[UIColor redColor]
range:matchRange];
}
textView.attributedText = attributedString;
textView.selectedRange = selectedRange;
}
有没有不直接使用CoreText的解决方案?我喜欢UITextView
选择文本的能力等等......