UPDATED: Is it possible to have one UIViewController
(vc1
) as container and one UIViewController
as a child (vc2
)
[vs1 addChildViewController:vc2];
[vs1.view addSubview:vc2.view];
and allow orientation change in vc2
independently from vc1
supported orientations?
F.e vc1
supports only portrait orientation, but vc2
supports all orientations.
I want to see vc2
view rotated to landscape meanwhile vc1
view still in portrait.
F.e I have VC1 and VC2 (popup)
Only portrait orientation is supported for VC1, but VC2 supports all orientations.
I would like to have landscape orientation for popup