我已经在数组的表格视图中显示了我的数据,但我不想显示数组中的最后一个对象。我该如何做到这一点?谢谢
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
MQManeuver *manuever = [[route maneuvers] objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.imageView.image = nil;
cell.detailTextLabel.numberOfLines = 2;
cell.detailTextLabel.adjustsFontSizeToFitWidth = YES;
cell.detailTextLabel.text = manuever.narrative;
cell.detailTextLabel.font = [UIFont boldSystemFontOfSize:12];
cell.detailTextLabel.textColor = [UIColor blackColor];
float distance = manuever.distance;
NSString *distance1 = [NSString stringWithFormat:@"%.1f", distance];
cell.textLabel.text = [distance1 stringByAppendingFormat:@" miles"];
cell.textLabel.textColor = [UIColor grayColor];
return cell;
}