Hi
In case you already haven't found out, do this:
Right click on your "info.plist" under resources and click Open as > Source Code File
Then right before it says </dict> at the end, put these to lines of code:
Code:
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
Then find your applicationDidFinishLaunching method inside your AppDelegate.m and add this line of code after the [window makeKeyandVisibile] line
Code:
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
Finally implement the shouldAutorate.... blah blah blah method (that's a technical term) in your ViewController (make sure it's the view CONTROLLER)
and replace the return with this
Code:
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
That should help!
Alex