I have a Windows based application. I have a series of buttons in the xib. When I click on one of the buttons I want it to load a table view or a web page or a text view (depending on the button). This is the code I am using to attempt to move to the table view (which has its own xib). It prints the NSLogs lines in the console. It does none of the navigation. What am I missing? Is this not the way it is supposed to work?
-(IBAction)vocabListPressed:(id)sender {
NSLog(@"Exiting vocabListPressed");
VocabListController *second = [[VocabListController alloc] initWithNibName:@"VocabListController" bundle:nil];
[second setTitle:@"Vocabulary List"];
[self.navigationController pushViewController:second animated:YES];
[second release];
NSLog(@"Entering vocabListPressed");
}