I have a UITabBar
application with embedded UINavigation
for some of the views. On one specific navigationview I am displaying graphs/charts and it wou
Try it in particular ViewController
in which you need to required in landscape mode:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight );
}