On suspension of the app, the landscape view of app is viewing as in portrait mode. Although the app is working fine on one go and ios 5 but show disorder in in ios 6 after suspending the app. I also included the modification in delegate method for ios 6. Here is my code.
if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0)
{
// warning: addSubView doesn't work on iOS6
[window addSubview: menuViewController.view];
}
else
{
// use this mehod on ios6
[window setRootViewController:menuViewController];
application.statusBarOrientation = UIInterfaceOrientationLandscapeRight;
}
[window makeKeyAndVisible];
[menuViewController setRootFadingViewController];