Your search is in the wrong place: in your RootViewController.m
file RootViewController.m
find the following code:
#elif GAME_AUTOROTATION == kGameAutorotationUIViewController
the line that says return (UIInterface ... Portrait) is the line that defines the capabilities of your application. You can change this to anything to allow you to fully rotate, to keep it in a certain orientation or whatever you want ...
also in this
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIIinterfaceOrientation)interfaceOrientation { /* return (interfaceOrientation == UIIinterfaceOrientationPortrait || interfaceOrientation == UIIinterfaceOrientationLandscapeLeft || interfaceOrientation == UIIinterfaceOrientationLandscapeRight); */ //GET RID OF ALL THIS CRAP return true; //do this instead, and if this doesn't work, try return YES; }
source share