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

'Could not find a storyboard named 'Main' in bundle NSBundle *** 是提示你缺少storyboard文件


如果你不需要storyboard文件,可以在info.plist文件把它的键删除

'Could not find a storyboard named 'Main' in bundle NSBundle ***_第1张图片

你也可以创建一个storyborad文件,取名为Main

'Could not find a storyboard named 'Main' in bundle NSBundle ***_第2张图片


这时候跑起来,程序还不是OK的,会有“Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?”错误提示,而且跑起来的程序屏幕是黑的

所以这里你首先要给这个新创建的storyboard文件拖进去一个ViewController并且为这个ViewController指定一个类

'Could not find a storyboard named 'Main' in bundle NSBundle ***_第3张图片

还要勾选“Is Initial View Controller”

'Could not find a storyboard named 'Main' in bundle NSBundle ***_第4张图片


Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?


你可能感兴趣的:(mac,ios开发,ios7,Object-C)