notes apple app iphone ipad ios6 uiinterfaceorientation

iphone - apple - itunes



Problemas de paisaje de iPhone (2)

xcode: 4.5.2

Quiero crear una aplicación en iPad;

Configura mi info.plist como a continuación:

Orientación inicial de la interfaz: Horizontal (botón de inicio izquierdo)

Cuando comencé mi aplicación, el dispositivo de orientación tiene el modo horizontal, pero mi vista no gira para esta orientación.

No sé qué es, quién puede ayudarme


¿Implementas estos métodos?

-(BOOL)shouldAutomaticallyForwardAppearanceMethods{ // This method is called to determine whether to // automatically forward appearance-related containment // callbacks to child view controllers. return YES; } -(BOOL)shouldAutomaticallyForwardRotationMethods{ // This method is called to determine whether to // automatically forward rotation-related containment // callbacks to child view controllers. return YES; }


En ios6 debes usar este método para vieworientation

-(BOOL)shouldAutorotate { return YES; } -(NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskAll; } - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation { return UIInterfaceOrientationMaskAll; }