I am looking to create a view controller which displays in both portrait and landscape.The app currently runs in only portrait. Before you consider marking as duplicate (I've exhausted many a search on here), hear me out:
The app displays a set of maps from our web server, the URLs do not change but the content changes daily (always a png, pdf, or mp4 extension). These products are accessed through two different means:
Tabviewcont>Navviewcont>viewcont>viewcont(which displays the web content) Tabviewcont>navviewcont>collviewcont>collviewcont>viewcont(which displays the web content)
I have tried: subclassing navcont by creating a new one and setting the webviewcont as the root and then overriding methods, using CGAFFINETRANSFORM, and overriding supportedorientations and preferredorientations in each view controller, UIImageView (brick wall because I forgot I have an mp4).
What I am trying to accomplish: Webviewcontrollers capable of rotating in portrait or landscape while other viewcontrollers remain in portrait.
Am open to any suggestion. Looked at Facebook and it seems they lock the feed display to portrait but when you click on an image from within your feed, you can view it in either portrait or landscape.