发生了一件非常奇怪的事情。我在IB中创建了一个UIViewController并使用了
detailController = self.storyboard?.instantiateViewControllerWithIdentifier("detailView")
self.navigationController?.pushViewController(detailController!, animated: true)
揭示视图。但奇怪的是它在纵向模式下呈现空白屏幕,在横向模式下呈现正确视图,如屏幕截图所示
我试过
self.presentViewController(traceInfoController!, animated: true, completion: nil)
它也没有帮助。
我的代码库相对较大,我已经注释了所有代码调整的代码。
任何想法如何发生以及如何纠正它?