使用 NSMutableAttributedString 在 UITextView 中进行 NSRange 搜索很慢
Posted
技术标签:
【中文标题】使用 NSMutableAttributedString 在 UITextView 中进行 NSRange 搜索很慢【英文标题】:NSRange search in UITextView with NSMutableAttributedString slow 【发布时间】:2013-06-14 04:15:20 【问题描述】:我正在尝试使用以下代码搜索属性化 UITextView 的内容:
NSRange range = NSMakeRange(0, haystack.length);
range = [haystack rangeOfString:searchText options:NSCaseInsensitiveSearch range:range];
while (range.location != NSNotFound)
[_attrString addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(range.location, range.length)];
range = NSMakeRange(range.location+range.length, haystack.length-(range.location+range.length));
range = [haystack rangeOfString:searchText options:NSCaseInsensitiveSearch range:range locale:nil];
...
_textView.attributedText = _attrString;
_attrString
当然是NSMutableAttributedString
这很好用,只是在处理大文本时速度很慢。使用包含 156,000 个字符的 UITextView 需要几秒钟才能看到更改。如果我 NSLog 循环的单个步骤,我可以看到代码执行得很快。更改需要几秒钟才能在 UITextView 中可见。
属性化的 UITextview 是否需要一段时间才能重绘?有什么办法可以加快进程吗?我尝试使用正则表达式搜索文本,但这似乎没有任何改变。
谢谢
【问题讨论】:
【参考方案1】:使用 NSPredicate
UITextField *txtFld=(UITextField *)sender;
// if (![txtFld.text isEqualToString:@""])
//[self getSearchResult:txtFld.text];
// else
// [self makeViewSmall];
//
// For string kind of values:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF contains[cd] %@", txtFld.text];
NSArray *results = [[sortedDic valueForKey:@"locations"] filteredArrayUsingPredicate:predicate];
NSLog(@"Result=%@",results);*/
【讨论】:
以上是关于使用 NSMutableAttributedString 在 UITextView 中进行 NSRange 搜索很慢的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)