Убедитесь, что эта функция возвращает YES или (interfaceOrientation == UIInterfaceOrientationLandscape)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
// Or you can use the following return statement:
//return (interfaceOrientation == UIInterfaceOrientationLandscape);
}
А в вашем файле Project-info.plist в папке ресурсов будет опция «Ориентация интерфейса поддержки», установите ее в соответствии с вашими требованиями.