开发环境:xcode 5.0.2
The bug:Applications are expected to have a root view controller at the end of application launch.
bug 发生:新建了一个继承viewController的object-c class 并且有附带的xib文件,新建一个基于single view的项目删除Storyboard后用纯代码方式创建界面。
对 xib的view 添加了synthesize 关键字 后黑屏。
解决方案:去掉@synthesize view;
问题解决。