I created an app in ios 6 with navigation view.Also I have set all orientation options in the application summary and even used the
-(BOOL) shouldAutoRotate
Hai I have found solution for my problem
Solution: For the app which consist UINavigation controller, just I created a category for UINavigation Controller class and I defined these methods
-(BOOL) shouldAutorotate{
return YES;
}
-(NSUInteger) supportedInterfaceOrientations{
return UIInterfaceOrientationMaskAll;
}
After adding this, all orientation were supported in my app.
The same, I done for UITabBar Controller also.This too worked for me by creating category for UITabBar Controller.
Thank you.