pourquoi l'iPhone 5 ne tourne pas à mis à l'envers

j'ai ajouté de nouvelles méthodes pour mon code comme décrit au pommes iOS 6 de documents mais sur l'iPhone 5, l'Application ne permet pas de faire tourner à l'envers. Seul le paysage Façons.

Voici mon Code à partir de la rootViewController:

- (NSUInteger)supportedInterfaceOrientations{
    NSLog(@">>> Entering %s <<<", __PRETTY_FUNCTION__);
    return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft |
            UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown);
}
- (BOOL)shouldAutorotate{
    NSLog(@">>> Entering %s <<<", __PRETTY_FUNCTION__);
    return YES;
}

j'ai essayé aussi "UIInterfaceOrientationMaskAll" mais aucun changement. L'Étrange est, mon iPhone 4 avec iOS6 n'rotation o à l'envers avec le même code.

Des Idées?