我有兩個視圖控制器(view1,view2),我添加了兩個表視圖(table1,table2),因爲我想從第一個視圖控制器的tableview移動到另一個視圖控制器的表視圖,在didSelectRowAtIndexPath。在廠景我有一個名爲的getArray一個數組我想在這裏顯示這個陣列中的視圖2(tableview2) 是我的代碼 在視圖2我創建了兩個陣列如何在viewController中從一個tableview移動到另一個tableview?
NSMutableArray *getContestArray;
NSMutableArray * getContestIdArray;
UITableView *tableContest;
if (indexPath.row==0)
{
NSLog(@"Going to exam Id Class");
UIStoryboard *contestDetail =self.storyboard;
view2 *contestVC =[contestDetail instantiateViewControllerWithIdentifier:@"view2VC"];
[self presentViewController:contestVC animated:YES completion:nil];
}
else if (indexPath.row==1)
{
}