I am using this code to output a tableView with UILabels that replicate the look of columns.
There are currently 2 labels, but I'm adding a third so I need to make them a little less wide so all 3 can fit.
I commented out the 2 lines that add a 3rd "column" that will show username text.
How can I adjust the code so that I can fit 3 columns instead of 2 within in UITableView.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *MyIdentifier = [NSString stringWithFormat:@"AuditGridCell %i", indexPath.row];
GridTableViewCell *cell = (GridTableViewCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[[GridTableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
[(GridTableViewCell *)cell clearColumns];
}
int is_row_bold = 0;
NSMutableArray *values = [[NSMutableArray alloc] init];
float sizes[10] = {CELL_CONTENT_WIDTH, 250.0, 100.0, 125.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0};
if ([self interfaceOrientation] == UIInterfaceOrientationPortrait ||
[self interfaceOrientation] == UIInterfaceOrientationPortraitUpsideDown) {
sizes[0] = CELL_CONTENT_WIDTH_PORTRAIT;
sizes[1] = 200.0;
}
float sum_total = 0.0;
if (1) {
int spacer_width = 5;
UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, spacer_width, tableView.rowHeight)] autorelease];
[cell.contentView addSubview:label];
sum_total += spacer_width;
}
if (0 == indexPath.row) {
is_row_bold = 1;
// [values addObject:@"Username"];
[values addObject:@"Description"];
[values addObject:@"Date"];
} else {
int index = indexPath.row - 1;
// [values addObject:[[self.auditRecords objectAtIndex:index] valueForKey:@"username"]];
[values addObject:[[self.auditRecords objectAtIndex:index] valueForKey:@"description"]];
[values addObject:[[self.auditRecords objectAtIndex:index] valueForKey:@"date"]];
}
for (int it=0; it < [values count]; ++it) {
UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(sum_total, 0.0, sizes[it], tableView.rowHeight)] autorelease];
sum_total += sizes[it];
[(GridTableViewCell*)cell addColumn:sizes[it]];
label.text = [values objectAtIndex:it];
[cell.contentView addSubview:label];
}
[values release];
return cell;
}