我有一个实体客户的数据模型。客户具有姓名、地址等属性。这些属性之一是回调日期。我只想将具有今天回调日期的客户加载到表中。下面是我必须检查日期是否相等然后创建单元格的代码。问题是当日期不相等时,它会跳过单元格的创建。我如何跳过该特定客户并转移到下一个客户?
if(date==date2 && month==month2 && year==year2)
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString *string = [NSString stringWithFormat:@"%@ %@", cust.firstName, cust.lastName];
cell.textLabel.text = string;
return cell;
}
return nil;
}