在iOS 6上选择单元格时如何呈现特定的视图控制器?

时间:2013-01-10 05:46:36

标签: xcode ios6

我正在使用Xcode 4.5.2和iOS6。

我有3个视图控制器,FirstViewController包含动态表格视图  我想要的是,当选择第一行时,用户需要SecondViewController,并且当第二行被选为ThirdViewController时。

以下是我的代码的didSelectRowAtIndexPath方法

(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

NSIndexPath *path = indexPath;
NSInteger theInteger = path.row;


switch (theInteger)
{
    case 0:

        //here i wanna present FirstViewController

        break;
    case 1:
        //here i wanna present SecondViewController

        break;

    default:
        break;
  }
}

我不确定这是不是最好的做法,但这就是我所知道的。我希望我说清楚。

0 个答案:

没有答案