В вашем списке вы должны изменить supported interface orientations
на два элемента:
Позиция 0 Landscape (right home button)
Элемент 1 Landscape (left home button)
И использовать в каждом контроллере представления:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (UIInterfaceOrientationIsLandscape(interfaceOrientation));
}