views:

26

answers:

1

How can I force my application to launch an UISplitViewController in landscape mode?

A: 

Hello, you can have different device-based settings in your Info.plist file.

I found an example where it talked about having the app launching in Landscape mode (depending on device) like this:

...    <key>UIInterfaceOrientation</key>    <string>UIInterfaceOrientationPortrait</string>    <key>UIInterfaceOrientation~ipad</key>    <string>UIInterfaceOrientationLandscapeLeft</string>    ...

With the first tag refering to iPhone and the ~iPad one refering to iPad. Not sure if this link will help you, but this (I mean the Info.plist way) is definitely the way to go.

Hope it helps.

Ciao

Giovanni

maggix