views:

21

answers:

0

The first view that appears in my app is a standard view with two UIButtons on it. When you select a button, a UITableView appears. I have set 'Anitmated' to 'YES', but when I tap the button, the UITableView does not slide onto the screen (it just appears). When I hit the "Back" button on the UITableView, it does animate as it slides off the screen... Is it possible to make the entrance animate, or should I just create a UITableView as the first screen and be done with it ?

Here's what I have at the moment - I am not sure how to work the navController into the mix:

// Create the viewController for the EventDetailView
MyClass *viewController = [[MyClass alloc] initWithNibName:@"MyClass" bundle:nil];

// Push the new viewController onto the screen
[self.navigationController pushViewController:viewController animated:YES];

// Release the viewController from memory
[viewController release];