My app is fixed to landscape mode, yet during viewDidLoad() and even viewWillAppear(), the following portrait dimensions still return:

self.view.bounds.size.width = 320.00
self.view.bounds.size.height = 480.00

It's not until viewDidAppear() that the actual landscape dimensions result.

self.view.bounds.size.width = 480.00
self.view.bounds.size.height = 320.00

I find this weird. Why does this happen!? and how can I fix this?

link|improve this question

79% accept rate
2  
Are you returning YES in your root UIViewController's - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterface‌​Orientation method? – Jeff Hay Feb 9 at 23:35
I use: return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);. Every configuration I could find I set it to landscape. And still no change. I'm suspecting it's a "feature" bug in iOS. – Sebastian Dwornik Feb 10 at 2:54
I just went back and read the Apple docs. viewWillAppear: is called "before any animations are configured for showing the view". Since rotation is (can be) animated, that's probably why you are seeing the un-rotated sizes. So I suspect you are right - it is a "feature" – Jeff Hay Feb 10 at 16:45
feedback

1 Answer

up vote 3 down vote accepted

In your app's info.plist file, specify the key:

 UISupportedInterfaceOrientations

with values for landscape left and right:

enter image description here

EDIT:

The raw plist code should look like this:

    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>

Edit 2

You also need this key which determines the initial orientation of the status bar:

 <key>UIInterfaceOrientation</key>
 <string>UIInterfaceOrientationLandscapeRight</string>

Further, you need to make sure that ALL of your view controllers (tabbar, navbar, regular view-controllers) implement

 shouldAutorotateToInterfaceOrientation

and return a Landscape (left or right) value.

Here is an Apple docs article on the subject:

Technical Note TN2244

And finally, here are some other SO posts on this topic: post 1 and post 2.

link|improve this answer
Already have that set. <string>UIInterfaceOrientationLandscapeLeft</string> </plist> – Sebastian Dwornik Feb 9 at 23:33
@SebastianDwornik See edit. – Rayfleck Feb 9 at 23:37
Yes, I get it. And I'm saying it makes no difference. Does your code work as it's supposed to? – Sebastian Dwornik Feb 10 at 2:52
@SebastianDwornik please see second edit. Hopefully this is the whole story now. – Rayfleck Feb 10 at 14:38
'Initial interface orientation' (aka. UIInterfaceOrientation) key within the plist file I think finally did it. Thank you. – Sebastian Dwornik Feb 12 at 19:32
feedback

Your Answer

 
or
required, but never shown

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