我有一个NSFetchedResultController与不同的部分.
我尝试使用UISearchDisplayController进行搜索时遇到崩溃:
我尝试使用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