智慧 + 毅力 = 无所不能

正确性、健壮性、可靠性、效率、易用性、可读性、可复用性、兼容性、可移植性...

导航

Could not find a storyboard named 'Main' in bundle NSBundle

Posted on 2016-09-22 10:37  Bill Yuan  阅读(364)  评论(0编辑  收藏  举报

转自:http://www.cnblogs.com/ygm900/p/3836580.html

1、删掉工程中main.storyboard 后要删除plist文件中对应的键值,否则会报如下错误: Could not find a storyboard named 'Main' in bundle NSBundle

2、删除main.storyboard后,需要在AppDelegate.m中初始化一个window进行使用,否则应用程序没有window可用。

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];