Alright, since no one answered my previous question, I have come to believe that there may be no easy way to do this. But I am optimistic. Here\'s my issue:
In my app, I
Based on my understanding of the question I assume that you want the 2nd view controller to be portrait and the first view controller to be landscape.
For the second viewcontroller, add this method:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
For the first view controller:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscape);
}