I have a tab bar controller with only two buttons in it. Each one goes to a distinct table view, but both tableview inherits from my TableViewController.m class. I have one dynamic cell in each table view. They both have a different name (the first one is "Places List" and the second one is "Photos and places list"). I want to display different things in each tab (which point to a table view), but I don't know how. I think I need to recognize the name of my dynamic cell in my controller to achieve that, but I don't know how either. Please help! This is the method in TableViewController.m
- (UITableViewCell *)tableView:(UITableView *)sender
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Places List";
UITableViewCell *cell = [sender dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [cities objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [restOfPlaces objectAtIndex:indexPath.row];
return cell;
}