ボタンが 2 つしかないタブ バー コントローラーがあります。それぞれが個別のテーブル ビューに移動しますが、どちらのテーブルビューも私の TableViewController.m クラスから継承します。各テーブル ビューに 1 つの動的セルがあります。どちらも名前が異なります (最初の名前は「場所のリスト」、2 番目の名前は「写真と場所のリスト」です)。各タブ (テーブル ビューを指す) に異なるものを表示したいのですが、方法がわかりません。それを実現するには、コントローラー内の動的セルの名前を認識する必要があると思いますが、その方法もわかりません。助けてください!これは 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;
}