作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让 TextView 中的匹配项为蓝色。
NSString *text = @"Except as contained in #wep this notice, the name of a copyright #ololo holder shall not be used in #pewpewpew advertising or otherwise to #promote";
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"#\\w*" options:0 error:NULL];
NSArray *matches = [regex matchesInString:text options:0 range:NSMakeRange(0, [text length])];
NSLog(@"count %d", matches.count);
for (NSTextCheckingResult *match in matches) {
NSRange matchRange = [match range];
NSString *match = [text substringWithRange:matchRange];
NSLog(@"Matched string: %@", match);
}
self.myTextView.text = text;
最佳答案
您必须创建 NSAttributedString
,然后根据范围应用字体并将 attributedText 设置为您的 UITextView
而不是简单的文本。
您的代码应如下所示。
NSMutableAttributedString *attrib = [[NSMutableAttributedString alloc]initWithString:text];
for (NSTextCheckingResult *match in matches) {
NSRange matchRange = [match range];
NSString *match = [text substringWithRange:matchRange];
NSLog(@"Matched string: %@", match);
// set your rgb color here which you want i added blue color.
[attrib addAttribute:NSForegroundColorAttributeName
value:[UIColor blueColor]
range:matchRange];
}
// set attributed text not a normal text.
self.myTextView.attributedText = attrib;
也许这对你有帮助。
关于ios - 如何进行高亮匹配(NSRegularExpression)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25644382/
我是一名优秀的程序员,十分优秀!