我连接了一个UISearchBar,以便在输入文本时重新加载AQGridView。但是,令人惊讶的是,在NSRangeException杀死我的应用程序之前,可以在搜索栏中输入的字符数是有限制的。在搜索栏中输入第11个字符后,会弹出一个NSRangeException,其中显示以下消息:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSPathStore2 getCharacters:range:]: index (11) beyond bounds (11)'
*** First throw call stack:
(0x261b052 0x27acd0a 0x25c3a78 0x25c39e9 0x1aded12 0x252498e 0x25369b3 0x1ae020b 0x1ae00f0 0x2a367 0x14204b2 0x261cec9 0x11ed515 0x129372f 0x1292e1e 0x129fce9 0x12ac12a 0x1b9ea39 0x25e6885 0x25e67a8 0x1ae31aa 0x6f6b8e7 0x6376917 0x673a111 0x673d4e1 0x6f4685b 0x6f492e3 0x6f49440 0x6f4a09f 0x674584d 0x6745b32 0x6759e12 0x6cbf0f7 0x6758245 0x67571f2 0x67578fb 0x6cbeca4 0x676c64e 0x675a0a0 0x673ca0a 0x63a7ad9 0x261ce72 0x6f665bc 0x63ce7f9 0x63d087f 0x138ae03 0x134fb9b 0x134f62b 0x134e6b6 0x1357f09 0x11f9406 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x12d714a 0x11f9460 0x11f90c5 0x11f91f8 0x11ecaa9 0x29aefa9 0x25ef1c5 0x2554022 0x255290a 0x2551db4 0x2551ccb 0x29ad879 0x29ad93e 0x11eaa9b 0x20ed 0x2065)
terminate called throwing an exception 这个错误显然来自UISearchBar委托方法-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText,所以下面是整个方法:
更新1:新代码。如果文本比产品名称更长,我只是中断了for in循环,但这并不能解决任何问题,它只是一个变通方法。
-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
/*
Update the filtered array based on the search text and scope.
*/
[copyListOfItems removeAllObjects]; // First clear the filtered array.
/*
Search the main list for products whose type matches the scope (if selected) and whose name matches searchText; add items that match to the filtered array.
*/
if (!searchText.length) {
isSearching = NO;
[filterControl setSelectedSegmentIndex:0];
[filterControl setEnabled:YES];
[self.gridView reloadData];
}
else {
[filterControl setSelectedSegmentIndex:0];
[filterControl setEnabled:NO];
isSearching = YES;
for (NSString *product in _documentIconsURLs)
{
if (searchText.length >= [[product lastPathComponent]length])
break;
NSComparisonResult result = [[product lastPathComponent] compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];
if (result == NSOrderedSame)
{
[copyListOfItems addObject:[product lastPathComponent]];
[copyListOfItems sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)];
}
}
[self.gridView reloadData];
}
} 全局异常断点表明整个代码的这一部分正在抛出异常:
NSComparisonResult result = [[product lastPathComponent] compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];所以我的问题是,为什么11个字符会抛出一个范围异常?这是可以补救的吗?
发布于 2012-01-21 13:41:56
来自compare:options:range:的文档
Important如果范围超出接收器的界限,则会引发
NSRangeException。
我猜您的某个产品的lastPathComponent短于11个字符。试着这样做:
NSComparisonResult result = [searchText compare:[product lastPathComponent] options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];发布于 2017-04-19 21:33:37
Ok找到了答案。这是一个API问题。苹果公司已经改变了64位的实现。该代码可以在32位设备上运行,但不能在64位设备上运行。正如我之前所说的,放入if else语句来检查被搜索的字符串的大小。
https://stackoverflow.com/questions/8950803
复制相似问题