views:

5

answers:

0

I want to parse a CSV into cells but I dont know how to add more than one cell to a table.

Do I need to create multiple versions of this method for each cell?

Teach me!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    [cell setText:@"This is a cell."];


    // Configure the cell.

    return cell;
}