- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
int count = [entries count];
if (count == 0) {
return kCustomRowCount;
}
return count;
int rowCount;
if (self.isFiltered) {
rowCount = filteredTableData.count;
}
else {
rowCount = allTableData.count;
}
return rowCount;
}
我的问题:需要第一个函数return count;
将解析后的数据填充到tableView中。第二个return rowCount;
需要计算过滤的搜索条目。但是当我同时使用两者时,我的应用程序就死了。当我删除第一部分时,搜索似乎无法正常工作..