fuerza paisaje ios 7

He tratado de seguir los métodos para forzar el paisaje en uno de mis puntos de vista:

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationLandscapeLeft;
}

- (BOOL)shouldAutorotate{
    return YES;
}

Tampoco funcionó. Tenga en cuenta que estoy probando en el simulador y en un iPad.

Gracias

Respuestas a la pregunta(3)

Su respuesta a la pregunta