UIModalPresentationFullScreen no funciona en modo horizontal iPad?

He agregado un ViewvController (B) como subvista en ViewController (A). En ViewController A (SuperView) UIModelPresentationFullScreen funciona bien. Pero cuando llamo a UIModelPresentationFull en ViewController B (SubView), la vista de modelo se muestra en modo vertical y tampoco se ve completamente. Cómo resolver este problema. ¿Alguien puede ayudarme por favor? He intentado 2 días.

Esto es lo que probé tanto en la supervista como en la subvista ...

picFBCapture *fbCapt = [[picFBCapture alloc] init];
//[self.navigationController pushViewController:fbCapt animated:YES];
//fbCapt.modalPresentationStyle = UIModalTransitionStyleFlipHorizontal;
fbCapt.modalTransitionStyle = UIModalPresentationFullScreen;
[self presentModalViewController:fbCapt animated:NO]; 
[fbCapt release]; 

Gracias por adelantado.