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.

My app currently asks the user for access to their current location, so when the app launches it shows the UIAlertView asking for it. The issue is that my app is set only for portrait mode, but the UIAlertView is displayed in landscape. I'd have to rotate the phone to have it oriented correctly. What am I missing here?

share|improve this question
"that my app is set only for portrait mode" ...can you show the code you are using to set it to portrait only? – debuggerman Oct 21 '11 at 17:40

1 Answer

up vote 1 down vote accepted

Checkout this post:

http://iphonedevelopment.blogspot.com/2008/12/more-on-uialertview-and-landscape.html

Basically you may need to try something like this before the alert.

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];

UPDATE: Here is a SO with an alternate solution post.

Rotating a UIAlertView

share|improve this answer

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.