I just updated to xcode 6.2 and am having an issue displaying a newly created view (in the view controller called myController) called through:
[self.navigationController pushViewController:myController animated:YES];
viewDidLoad
and viewWillAppear
are both called fine within myController
(i.e. NSlog
output seen in console) but for some reason the interface of the created XIB stays blank. The navigation control works and is above the blank screen. This occurs when running on the simulator and on the device.
Older view controllers are not having this issue when they are called by identical means within the same app. Interestingly, a dynamically generated view displays but a new view created within interface builder stays blank. I have tried copying an old XIB and creating a new one, but the Interface will not be displayed (simple screen with one button).
All steps of adjusting the new view in the rootcontroller have been performed, it just seems that the XIB will not be displayed. There is absolutely no error output in the console indicating that anything is wrong.
Any ideas, workarounds, log files to check? (besides using an older version of xcode).
thanks