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.
|
2
|
|
|
|
|
|
A nice tutorial for setting the lanscape mode step by step: http://www.dejoware.com/blogpages/files/iphone_programming_landscape_view_tutorial.html |
||
|
|
|
|
I don't have access to the iPhone Dev Center, but I've found this link on the web: Is this helpful? |
||
|
|
|
|
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. |
||
|
|
|
|
As long as the iPhone SDK is under NDA answering questions about iPhone development will be next to impossible without violating said NDA. |
||
|
|
|
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? |
||
|
|
|
|
From the Apple Dev Site:
|
||
|
|
|
|
sasb's and michaelpryor's answer appears to be correct, but if it's not working for you, try this alternative:
Or this one:
Or… this one:
You may also have to call 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. |
||
|
|
|
|
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...
Look for "Launching in Landscape Mode", page 102. |
||
|
|
|
|
First I set in info.plist
then I put this code in applicationDidFinishLaunching:
This way I can work on the view in Interface Builder in landscape mode. |
||
|
|
