That worked like a charm. thanks.
Quote:
Originally Posted by lpham
Simple set hidesBottomBarWhenPushed of the subview before you push to it:
ShowDetails *showDetails = [[ShowDetails alloc] initWithNibName:@"ShowDetails" bundle:nil];
showDetails.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:showDetails animated:YES];
[showDetails release];
|