I have a viewcontroller and its view that support only landscape in iPad.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationPortrait)
return NO;
else
return YES;
}
But I have a view with a movie player that needs to be in portrait only. So in this view I do this:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationPortrait)
return YES;
else
return NO;
}
My problem is that if I, in the first viewcontroller set portrait to NO, then my second view controller will never rotate to portrait. The secondviewcontroller is added as a subview of the first. How can I get view 1 to not rotate to portrait, but get view 2 to not rotate to landscape. This app is for demo purposes so really i'm just looking for the technical answer on this one.