I am having a VERY annoying issue with the a UITabBar project.
I have a UITabBarController that has 4 buttons. The first is a UINavigationController that has a table. A cell is selected and it pushes to a UIViewController. All that jazz works great.
What doesn't work great 
, I can NOT get the pushed viewController to
autorotate.
What I can do to make it work: In each class loaded by the UITabBarController set the
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
method to return YES. Which would be great if I wanted to rotate every view but I don't.
I have tried to subclass UITabBarController and that won't do what I want either.
Someone has to have run into this problem before. PLEASE help!!!!!
Thank you to whoever takes the time to read,
magic