Right now any new UIViewController added to my storyboard needs to have a class that has the following code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
Which is fine to maintain via copy/paste on each class, but is that really necessary? Is there not a faster way?