The implemented solution worked fine in IOS4, but now in IOS6 it refuses to display the assigned view (I only see the window on screen).
I got a ViewController called MainController. It got two IBOutlets of type UIView. One called portraitView and one called landscapeView.
In the MainController viewWillAppear I assign the view to be the portraitView.
self.view = portraitView;
Then the orientation changes I assign the view to be the landscapeView.
My problem is that none of the views seems to applear after assigning them to the viewControllers view. As stated, this worked fine in previous versions of IOS.
I have double checked that somehow the views possition haven't changed, and that the alpha and hidden property is correct. The outlets are also bound to the xib objects.
Anybody got a clue to what could be wrong? Adding that my xib file is not built up around a story board, but rather the "old" ibuilder setup.
