Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a ViewController and I have this code there :

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return NO;

}

However, if I change the orientation, the view rotates. Can anyone kindly help me out ?

share|improve this question
Try making it return YES if it is your supported orientation (you need at least 1 right?). Depending on the implementation of UIViewController (or code that uses this method to determine rotations), this may or may not help your problem, but would be more correct. – Matt Jun 6 '12 at 23:51
@Matt : I have tried it that way too... doesnt work :( – Ahsan Jun 7 '12 at 0:03
Same issue with me, what solved your problem? – mvb Aug 22 '12 at 10:02

1 Answer

Here is how I do it to keep an iPad in landscape mode:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation==UIInterfaceOrientationLandscapeLeft || interfaceOrientation==UIInterfaceOrientationLandscapeRight)
{
    return YES;
}

else
{
    return NO;
}

}
share|improve this answer
I have something similar too. It still rotates :( ... The view controller is inside a navigation controller with more view controllers beneath it. Do you think that might cause a problem ? – Ahsan Jun 7 '12 at 0:22
yes, are you putting the code in the mainViewcontroller??? if that doesn't work, look up how to specify it in the plist for your app. – vborra Jun 7 '12 at 0:23
noope, its not in the root view controller.my code is another view controller that I push into the nav controller stack. – Ahsan Jun 7 '12 at 0:28
the plist should allow all rotation. Only on this specific view controller, it should be Landscape (left/right) only. – Ahsan Jun 7 '12 at 0:29

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.