views:

35

answers:

1

I have a UITabViewController application with 4 tabs and each tab with a UINavigationController, each with a UItableView. When a row is clicked it navigates to another view. I would like to support Landscape Orientation only for a certain UIViewController and not in any other view. When I set "return YES" on each UINavigationcontrollers (BOOL)shouldAutorotateToInterfaceOrientation: method the app orients in all the views even in the uitableview. How do I get this right? I am very confused

A: 

I am defining the shouldAutorotateInterfaceOrientation method in the navigation controllers

Rupert