estoy usando el códigopresentViewController no apoyar la orientación en IOS 6
if ([self respondsToSelector:@selector(presentViewController:animated:completion:)])
{
[self presentViewController:navigationControllerCustom animated:YES completion:nil];
}
else
{
[self presentModalViewController:navigationControllerCustom animated:YES];
}
Mi aplicación tiene dos Retrato Retrato orientación y al revés. Este código funciona bien con iOS 5.1, pero la orientación no funciona en iOS 6
También he añadido este código en mi clase navigationControllerCustom
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
}
-(NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}
me puede ayudar a resolver este problema.
Gracias de antemano.
he tenido el mismo problema en mis aplicaciones que he compilado para iOS 6; todas las orientaciones funcionan, excepto UIInterfaceOrientationPortraitUpsideDown; es raro. – MrJre
@MrJre Cualquier solución igual es realmente extraña. –