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'm working with Navigation Controller in my storyboard, but my application is always in portrait format when I put the simulator in landscape. Why? =(

share|improve this question
You need to set the supported device orientations in the info.plist or the summary section. – Popeye Dec 24 '12 at 13:31
Well if you have already done that and @sibaPrasadHota answer didn't work then you will need to provide more for us to go on. Such as what you have already tried and code. Two lines asking why it doesn't work isn't anything for us to go on. – Popeye Dec 24 '12 at 13:49
Problem not solved – erhan3416 Dec 24 '12 at 13:54
As I have said provide more information what you have given us is nothing to go on. – Popeye Dec 24 '12 at 13:58

1 Answer

  1. Use this code in Your viewController

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

    // Return YES for supported orientations

    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}`

2.Also Go yo Target-->Summary->Supported interface orientation (Check which are Disabled)

3.set the supported device orientations in the info.plist (Check the Screenshot).

enter image description here

share|improve this answer
Problem not solved. – erhan3416 Dec 24 '12 at 13:41
Did you checked the Second option ? Manually Click on the Supported orientation in your target-->Summary. 2.Try to Check my Updated Answer. – Siba Prasad Hota Dec 24 '12 at 13:45

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.