ios – 在两部分搜索时崩溃

前端之家收集整理的这篇文章主要介绍了ios – 在两部分搜索时崩溃前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个NSFetchedResultController与不同的部分.
我尝试使用UISearchDisplayController进行搜索时遇到崩溃:
*** Assertion failure in -[UITableViewRowData rectForRow:inSection:],/SourceCache/UIKit/UIKit-2372/UITableViewRowData.m:1630

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException',reason: 'request for rect at invalid index path (<NSIndexPath 0x1d2c4120> 2 indexes [0,1])'

我检查并且我的搜索数组确实有两个条目(预期的结果):

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

它返回1

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

它返回2

有趣的是,如果我只有一个部分,它的工作完美.

请帮助! 原文链接:https://www.f2er.com/iOS/336829.html

猜你在找的iOS相关文章