【问题标题】:NSRangeException ConfusionNSRangeException 混乱
【发布时间】:2012-01-21 05:02:36
【问题描述】:

我连接了一个 UISearchBar 以在输入文本时重新加载 AQGridView。但是,令人惊讶的是,在NSRangeExceptionkills 我的应用程序之前,可以在搜索栏中输入的字符数是有限的。在搜索栏中输入第 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 个字符会引发范围异常?可以补救吗?

【问题讨论】:

    标签: objective-c ios ipad nsstring nsarray


    【解决方案1】:

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

    重要如果范围超出接收者的界限,则引发NSRangeException

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

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

    【讨论】:

    • 所以基本上我只需要切换两个变量? 掌心。我会在早上试试,谢谢 Rob。
    • 哈哈哈,我想过把“准备好面对手掌”放在我的回答中。 :)
    • 这就是我喜欢 SO 的原因,但还有另一个问题。我无法搜索!我可以输入 100 亿份包机,但它不会产生结果!
    • 我也有同样的问题。看起来搜索文本的长度不能小于您正在搜索的文本(这是有道理的)。最好的选择是在比较之前检查 if 块中两者的长度。
    【解决方案2】:

    好的,找到了答案。这是一个 API 问题。 Apple 已更改 64 位的实现。该代码将在 32 位设备上运行,但可以在 64 位设备上运行。正如我之前所说,放置一个 if else 语句来检查被搜索字符串的大小。

    【讨论】:

      猜你喜欢
      • 2012-02-06
      • 2010-12-04
      • 2011-05-05
      • 2018-05-30
      • 2014-07-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多