Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Facts:

Developed a iPhone app which is rotatable in general but each single view is not rotatable at all. We just need the rotation feature in one explicit view, so we had to enable rotation in general.

Now, when one installs the app on iPad and opens it in landscape mode, the app shows up in landscape mode and you cannot rotate it back to portrait if you turn the iPad (which seems to be logically because rotation is not allowed in the views).

I do not experience that in the simulator :(

Anybody an idea what to do? Sorry for not including code...

share|improve this question
Check your .plist and set all the orientation properties. – G.Ganesh Feb 27 at 15:10
By default in iPhone app lauches in portrait but in iPad landscape and portrait splash screen is supported , might be because of it. – Pushpak Narasimhan Feb 27 at 16:02

2 Answers

up vote 0 down vote accepted

Try adding "Supported interface orientations (iPad)" and ensure that "Portrait Bottom Home Button" is the first in the list. Also, amend your root view controller so that it only shows up in Portrait.

share|improve this answer
Seems that this worked out fine. Thank you. – pebbo Feb 27 at 15:25

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;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.