I use this in a function of table s parent view to show the tableview:
-(IBAction)someFunc{
UITableViewController* controller = [[UITableViewController alloc] init];
[self presentModalViewController:controller];
[controller release]
}
and after calling dismissModalViewController in the UITableView
s tableView:didSelectRowAtIndexPath
method,
the parent view will show a second and then the program collapses.