I have a few tab bar applications that also use navigation controllers within the tab bar. I would like to be able to present a view when a cell in the table view is clicked, but have it not be IN the tab bar controller. This would be similar to the Twitter app when a link is clicked from within a Tweet. This way, the view for that link can be rotated, while everything else in the tab bar won't rotate. Here is how my code is setup now:
I just want the view to cover up the tab bar, and therefore, let it rotate without needing to allow everything in tab bar to also rotate.
Code:
self.webViewController = [[[WebViewController alloc] initWithNibName:@"WebViewController" bundle:[NSBundle mainBundle]] autorelease];
[self.navigationController pushViewController:_webViewController animated:YES];