UIModalPresentationFullScreen não funciona no modo paisagem do iPad?
Adicionei um ViewvController (B) como subview no ViewController (A). No ViewController A (SuperView) UIModelPresentationFullScreen funcionando bem. Mas, quando estou chamando UIModelPresentationFull no ViewController B (SubView), o modelview é exibido no modo Retrato e isso também não é totalmente visualizado. Como resolver este problema. Alguém pode me ajudar por favor. Eu tentei 2 dias.
Isto foi o que tentei na superview e na subview ...
picFBCapture *fbCapt = [[picFBCapture alloc] init];
//[self.navigationController pushViewController:fbCapt animated:YES];
//fbCapt.modalPresentationStyle = UIModalTransitionStyleFlipHorizontal;
fbCapt.modalTransitionStyle = UIModalPresentationFullScreen;
[self presentModalViewController:fbCapt animated:NO];
[fbCapt release];
Desde já, obrigado.