a noob question here.

i detect the orientation with:

UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

all is fine and dandy and I reposition my text fields and labels according to the reported orientation with

if (orientation == UIDeviceOrientationPortrait || orientation == UIDeviceOrientationPortraitUpsideDown)

and else{} for everything else

the problem that i only recently discovered is when the UIDevice reports UIDeviceOrientationFaceUp or UIDeviceOrientationFaceDown. how do I deal with this situation ? how do I know whether UIDeviceOrientationFaceUp and UIDeviceOrientationFaceDown is happening in Portrait or Landscape ? I know that the device is facing up or down, but I don't know if I should reposition everything to Portrait or Landscape.

thank you!

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Apple recommends against using device orientation for view layout. Instead, each view controller has an interfaceOrientation property, and UIApplication has a statusBarOrientation property, both of which will return the current interface orientation, which is suitable for view layout.

To monitor for changes, there are UIViewController methods like willRotateToInterfaceOrientation:duration: that will be called and notifications such as UIApplicationWillChangeStatusBarOrientationNotification that will be posted when an interface orientation change occurs.

link|improve this answer
thank you, this looks promising. I'll take a look – radvan72 Dec 12 '10 at 19:15
This is the correct answer, just refactoring the UIDevice orientation response (as the blog suggests) isn't as good as listening to the interfaceOrientation of the UIViewController. Nice work. – Jessedc Apr 27 '11 at 3:43
I like this answer better as well. caprica13, could you mark this one as correct? – Jack Lawrence Dec 18 '11 at 0:02
feedback

This blog post here: http://blogs.remobjects.com/blogs/mh/2010/06/29/p1685 explains it really well.

link|improve this answer
perfect! i made the changes and everything seems to work great now. thank you. – radvan72 Dec 12 '10 at 20:12
That wonky theme gives me a headache, gah – Alex Jan 17 at 18:05
hahaha imagine if Apple's Objective-C/frameworks documentation looked like that! – Jack Lawrence Jan 17 at 20:37
feedback

I have the same problems with

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];

This method generate notifications for 7 possible device positional states:

UIDeviceOrientationPortrait
UIDeviceOrientationPortraitUpsideDown
UIDeviceOrientationLandscapeLeft
UIDeviceOrientationLandscapeRight
UIDeviceOrientationFaceUp
UIDeviceOrientationFaceDown
UIDeviceOrientationUnknown

But I only need the first 4, well this is my approach to solve this problem (with code included): How to handle UIDeviceOrientation for manage views layouts

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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