quick question
how do you set it so the view loads up in landscape orientation and stays in that mode?
thanks
how do you set it so the view loads up in landscape orientation and stays in that mode?
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
thanks