私のプロジェクトには、10個のセルを持つtableViewがあります。そして、didSelectRowAtIndexPath
すべてのセルに複数のViewController(ファイル)があるので、私のようにdidSelectRowAtIndexPath
見えます
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row == 0) {
CallViewController *viewc = [[CallViewController alloc] initWithNibName:@"CallViewController" bundle:nil];
[self.navigationController pushViewController:viewc animated:YES];
}else if(indexPath.row == 1) {
BirthdayViewController *viewc = [[BirthdayViewController alloc] initWithNibName:@"BirthdayViewController" bundle:nil];
[self.navigationController pushViewController:viewc animated:YES];
}
だから私はこれらの条件を望まない私は私のコードをきれいにしたい