como definir a orientação após o lançamento no iPhone
ostaria de saber como girar automaticamente o iPhone após o lançament
minha imagem de lançamento está em retratos, mas o aplicativo em si está na paisage
Após o lançamento, a orientação ainda está em retratos, em vez de girar automaticamente para a paisage
this é o meu info.plist
no meu controlador de visualização raiz
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}