在我的- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法中,是否可以不使用某些单元格填充我的表格视图?
现在我的方法看起来像这样:
static NSString *CellIdentifier = @"Cell";
ResultsCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
cell.title.text = [[resultsForCell objectAtIndex:indexPath.row] objectForKey:@"title"];
return cell;
但我想这样做,如果 objectforkey@"title" 等于某些东西,它不会显示在 tableview 上或不返回该单元格。我不知道实现这一目标的最佳方法。