配列からテーブルビューにデータを表示しましたが、配列の最後のオブジェクトを表示したくありません。どうすればこれを達成できますか? ありがとう
- (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;
}