I have a UITableView as my main view. It is showing a list of videos. After the user has view a video I would like to pass him onto a different view to ask some questions.
I have a notification when the movie has finished that works right. I've put an Alert there to test. I have this code to try to get over to the new view;
Code:
TestViewController *testVC = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
[self presentModalViewController:testVC animated:YES];
[testVC release];
But nothing happens. I have imported the TestViewController's h file into the TableView.
What have I done wrong?