It seems that when my app loads, it does not know its current orientation:

UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
if (orientation == UIDeviceOrientationPortrait) {
    NSLog(@"portrait");// only works after a rotation, not on loading app
}

Once I rotate the device, I get a correct orientation, but when I load the app, without changing the orientation, it seems that using [[UIDevice currentDevice] orientation] doesn't know the current orientation.

Is there another way to check this when I first load my app?

link|improve this question

See also iPhone orientation – beryllium Feb 20 at 15:40
feedback

6 Answers

up vote 16 down vote accepted

EDIT: I mis-read your question. This will allow you to start your application in certain orientations. Just realized you're trying to figure out the orientation on launch.

There is a method to check the status bar orientation on UIApplication:

[[UIApplication sharedApplication] statusBarOrientation];

Original answer

Try setting the application's accepted device orientations in the plist file:

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

This will indicate that your application supports Portrait (home button at the bottom), landscape left, and landscape right.

Then, in your UIViewControllers, you will need to override the shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) method to return YES when the app should rotate:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

     return interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight;
}

This will tell the UIViewController to auto rotate if the device is in one of your supported orientations. If you wanted to support the upside-down orientation as well (portrait with home button on top) then add that to your plist and just return YES out of this method.

Let us know how it works out.

link|improve this answer
Yes, checking the statusbarOrientation is what did the trick! – Nic Hubbard May 4 '11 at 20:51
Note that the message is named statusBarOrientation (not statusbarOrientation with a lowercase 'b') - edit submitted for review. – penfold Oct 3 '11 at 1:10
2  
not working for me I am getting portrait every time.I am trying it for Ipad and testing on simulator.Does it depend on hardware.Will it work on device? – Nilesh Tupe Oct 12 '11 at 10:09
feedback

I think this will work:

 [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];UIInterfaceOrientation orientation = [UIDevice currentDevice].orientation;

According to the UIDevice reference:
Quote:
"The value of this property always returns 0 unless orientation notifications have been enabled by calling beginGeneratingDeviceOrientationNotifications"
I had initially assumed that this property contained the current orientation at all times, but not so, apparently. I guess that turning on notifications is being handled for us behind the scenes in other situations where the orientation property is typically accessed, so it wasn't obvious that this needs to be done manually inside the app delegate

link|improve this answer
1  
That did't seem to work, I ended up using [UIApplication sharedApplication].statusBarOrientation which works. – Nic Hubbard May 4 '11 at 18:38
This works for me, thanks for the tip. – David Caunt Jun 30 '11 at 11:21
feedback

Try the accelerometer to get its reading, UIAccelerometer, get sharedAccelerometer, set its delegate, get the readings, figure out from there orientation.

link|improve this answer
Yeah, but older iPod touch's don't have an Accelerometer, so this won't work in my case. – Nic Hubbard May 4 '11 at 18:24
actually even the first ipod touch had an accelerometer – Matthias Bauch May 4 '11 at 18:37
I stand corrected. – Nic Hubbard May 4 '11 at 18:38
feedback

One thing that nobody has touched on yet is that you’re storing UIDeviceOrientation types in a UIInterfaceOrientation variable. They are different, and should not be treated as equal. Note that UIDeviceOrientationLeft is equal to UIInterfaceOrientationRight (since the interface rotates the opposite way compared to the device).

link|improve this answer
feedback

the problem is that [UIDevice currentDevice]orientation] sometimes reports the the device's orientation incorrectly.

instead use [[UIApplication sharedApplication]statusBarOrientation] which is a UIInterfaceOrientation so to check it you'll need to use the UIInterfaceOrientationIsLandscape(orientation)

hope this helps.

link|improve this answer
feedback

Tried all and no good results. So what I did, as I'm on an ipad, was to leave all the work to the splitViewController methods to invalidate the barButton:

For portrait:

- (void)splitViewController:(UISplitViewController *)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem *)barButtonItem forPopoverController: (UIPopoverController *)pc { NSlog(@"portrait");}

For landscape:

- (void)splitViewController:(UISplitViewController *)svc willShowViewController:(UIViewController *)aViewController invalidatingBarButtonItem:(UIBarButtonItem *)barButtonItem{ NSlog(@"landscape");}

this always works on load.

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.