vote up 4 vote down star
2

What's the best way to create an iPhone application that runs in landscape mode from the start, regardless of the position of the device? Both programmatically and using the Interface Builder.

flag

78% accept rate

9 Answers

vote up 3 vote down check

A nice tutorial for setting the lanscape mode step by step:

http://www.dejoware.com/blogpages/files/iphone_programming_landscape_view_tutorial.html

link|flag
vote up 2 vote down

I don't have access to the iPhone Dev Center, but I've found this link on the web:

http://developer.apple.com/iphone/library/codinghowtos/UserExperience/index.html#GENERAL-START_MY_APPLICATION_IN_LANDSCAPE_MODE

Is this helpful?

link|flag
vote up 0 vote down

If I use that setting, my app starts in portrait mode, but the simulator starts in landscape mode.

I've already checked out the apple forums, and there are some helpful suggestions, but I'm still looking for the canonical explanation of everything to do with portrait/landscape mode and autorotation.

link|flag
vote up 0 vote down

As long as the iPhone SDK is under NDA answering questions about iPhone development will be next to impossible without violating said NDA.

link|flag
This is true, and very, very annoying. Apple apparently did that at the beginning because the SDK wasn't stable, but I really wish they'd life that restriction now. – Ovid Sep 22 '08 at 10:10
vote up 0 vote down

Though you're still having issues, I think sasb's answer is correct. I've noticed several derivations in behavior between the iPhone SDK documentation, simulator, and actual iPhone device. There is a possibility that this is an issue with the iPhone OS. What version are you running?

link|flag
vote up 5 vote down

From the Apple Dev Site:

To start your application in landscape mode so that the status bar is in the appropriate position immediately, edit your Info.plist file to add the UIInterfaceOrientation key with the appropriate value (UIInterfaceOrientationLandscapeRight or UIInterfaceOrientationLandscapeLeft), as shown in Listing 2.

Listing 2: Starting your application in landscape mode

<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
link|flag
vote up 1 vote down

sasb's and michaelpryor's answer appears to be correct, but if it's not working for you, try this alternative:

- (void)applicationDidFinishLaunchingUIApplication *)application {
  application.statusBarOrientation = UIInterfaceOrientationLandscapeRight;
}

Or this one:

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];

Or… this one:

[application setStatusBarOrientation: UIInterfaceOrientationLandscapeRight animated:NO];

You may also have to call window makeKeyAndVisible; first.

A few links: Developing in landscape mode, iPhone SDK: How to force Landscape mode only?

@Robert: please refer to The iPhone SDK, NDA, and Stack Overflow.

link|flag
vote up 0 vote down

The latest iPhone OS Programming Guide has a full section on this, with sample code. I am sure this is a recent addition, so maybe you missed it. It explains all the conditions you have to comply with; basically...

  • set the Info.plist properties (this changes the position of the status bar, but not the view)
  • rotate your view manually around its center, on either your UIViewController viewDidLoad: method or your applicationDidFinishLaunching: method or implement auto rotation ("Autoresizing behaviors", page 124)

Look for "Launching in Landscape Mode", page 102.

link|flag
vote up 0 vote down

First I set in info.plist

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

then I put this code in applicationDidFinishLaunching:

CGAffineTransform rotate = CGAffineTransformMakeRotation(1.57079633);
[window setTransform:rotate];

CGRect contentRect = CGRectMake(0, 0, 480, 320); 
window.bounds = contentRect; 
[window setCenter:CGPointMake(160.0f, 240.0f)];

This way I can work on the view in Interface Builder in landscape mode.

link|flag

Your Answer

Get an OpenID
or

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