Hey guys,
I've been using this
For the longest time to force a landscape orientation.
Under the new iOS SDK it doesn't work and just sits in portrait - frustrating at best, crippling at worst. Can anyone suggest how I change this to fit the new guidelines? I've ben having real trouble with it.
I've looked at the update notes but can't figure out what to do. Anyone able to help?
I've been using this
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
[self prepareTapView];
// return NO;
}
For the longest time to force a landscape orientation.
Under the new iOS SDK it doesn't work and just sits in portrait - frustrating at best, crippling at worst. Can anyone suggest how I change this to fit the new guidelines? I've ben having real trouble with it.
I've looked at the update notes but can't figure out what to do. Anyone able to help?