might be you just check in Appdelegate Class that your Device is which position Landscape or portrait. and you can check many way like bellow:-
in your Delegate.m file
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
[[UIApplication sharedApplication] statusBarOrientation];
[[UIDevice currentDevice] orientation];
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceRotated:) name:UIDeviceOrientationDidChangeNotification object:nil];
or
[self willRotateToOrientation:[[UIDevice currentDevice] orientation]];
- (void)willRotateToOrientation:(UIInterfaceOrientation)newOrientation {
if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation))
{
if (newOrientation == UIInterfaceOrientationLandscapeLeft || newOrientation == UIInterfaceOrientationLandscapeRight) {
//[objAppdelegate.tabBarController.selectedViewController supportedInterfaceOrientations];
//[REMAppDelegate sharedInstance].isLandScape = TRUE;
[self supportedInterfaceOrientations];
// tblNotiicationDetails.Frame=CGRectMake(20, 5, 728, 50);
// [self isLandscap];
// [viewTitle setFrame:CGRectMake(20, 20, 320, 50)];
}
}
else if (UIDeviceOrientationIsPortrait([UIDevice currentDevice].orientation))
{
if(newOrientation == UIInterfaceOrientationPortrait || newOrientation == UIInterfaceOrientationPortraitUpsideDown){
[self supportedInterfaceOrientations];
// [viewTitle setFrame:CGRectMake(20, 20, 728, 50)];
// [self isPotrait];
// [objAppdelegate.tabBarController.selectedViewController supportedInterfaceOrientations];
//[REMAppDelegate sharedInstance].isLandScape = FALSE;
}
}
// Handle rotation
}
-(void)deviceRotated:(NSNotification*)notification
{
//here just my code set as per your requirement code
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
if(orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight)
{
}
else
{
//your code abot oriantation
}
}
//this bellow use for ios6
-(BOOL)shouldAutorotate{
if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation))
{
}
else if (UIDeviceOrientationIsPortrait([UIDevice currentDevice].orientation))
{
}
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}