I have it so I can rotate my program, but how can I set the default orientation?
hmm, that presents a problem lol. thanks dude
hello!
I have an application with three views, the first two buttons to go in the other two. I would like one of the views will be displayed in landscape.
I tried [[UIDevice currentDevice] setOrientation: UIInterfaceOrientationLandscapeRight], but it not work.
I set its direction in interface builder but he is still in portrait.
If you have an idea, I know because I am confused here.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}