objective-c - NSRangeException 困惑

标签 objective-c ios ipad nsstring nsarray

我连接了一个 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 委托(delegate)方法 -(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 个字符会抛出范围异常?这可以补救吗?

最佳答案

来自 compare:options:range: 的文档:

Important Raises an NSRangeException if range exceeds the bounds of the receiver.

我的猜测是您的产品之一有一个少于 11 个字符的 lastPathComponent。试试这个:

NSComparisonResult result = [searchText compare:[product lastPathComponent] options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];

关于objective-c - NSRangeException 困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8950803/

相关文章:

objective-c - 使用对象之间的公共(public)键值对将 NSArray 拆分为较小的键值编码数组

ios - 在 iOS 中使用 imread()

iphone - 不使用 xcode 重命名 iOS 应用程序?

iphone - UIViewController 的 UIInterfaceOrientation

objective-c - youtube 全屏视频不调用 viewWillAppear 或 viewWillRotate

ios - [外设maximumWriteValueLengthForType :CBCharacteristicWriteWithResponse] return?]是什么意思

带有 AttributedTitle 的 IOS UIButton

ios - Objective C - 在代码中创建的对象在切换 View Controller 后消失

ios - 有更新时解析 Livequery 更改不打印

javascript - 谁能帮我分离世博会应用程序