how para configurar la Orientación después del lanzamiento en iPhone

Me gustaría saber cómo rotar automáticamente el iPhone después del lanzamiento.

mi imagen de lanzamiento está en retratos, pero la aplicación en sí está en horizontal.

después del lanzamiento, la orientación todavía está en los retratos en lugar de girar automáticamente al paisaje.

esta es mi info.plist

en mi controlador de vista raíz

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));

}