现在新版本的Xcode新建iOS项目的时候都是默认用Main.storyboard当第一个主页面了,也没得选.xib模式。有时候要删掉.storyboard,手动自建.xib。
1、先右键删掉Main.storyboard,垃圾桶可以直接清空了。
2、Info.plist文件里面删掉 Main storyboard file base name 一行。
3、删完了不要运行,运行也是黑屏。新建自定义的.xib。
4、最后 AppDelegate.m 文件里面 didFinishLaunchingWithOptions 方法加上几句话:
self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
ShouDongMainView *sd = [[ShouDongMainView alloc] init];
self.window.rootViewController = sd;
[self.window makeKeyAndVisible];
然后运行。