当我尝试在iOS模拟器中启动我的应用时出现问题, 我需要有人来解决这个问题,我已经尝试了一切,但我仍然有同样的问题 我收到了这个错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Could not find a storyboard named 'MainStoryboard_iPhone.storyboard' in bundle NSBundle </Users/iYousef911/Library/Application Support/iPhone Simulator/7.1/Applications/F00ED8C4-145B-43C0-ACDA-C41EDC01D824/Azkar.app> (loaded)'
*** First throw call stack:
(
0 CoreFoundation 0x029c21e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x027418e5 objc_exception_throw + 44
2 UIKit 0x01965400 -[UIStoryboard name] + 0
3 UIKit 0x01401692 -[UIApplication _loadMainStoryboardFileNamed:bundle:] + 53
4 UIKit 0x01401949 -[UIApplication _loadMainInterfaceFile] + 245
5 UIKit 0x0140054e -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 543
6 UIKit 0x01414f92 -[UIApplication handleEvent:withNewEvent:] + 3517
7 UIKit 0x01415555 -[UIApplication sendEvent:] + 85
8 UIKit 0x01402250 _UIApplicationHandleEvent + 683
9 GraphicsServices 0x03d21f02 _PurpleEventCallback + 776
10 GraphicsServices 0x03d21a0d PurpleEventCallback + 46
11 CoreFoundation 0x0293dca5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
12 CoreFoundation 0x0293d9db __CFRunLoopDoSource1 + 523
13 CoreFoundation 0x0296868c __CFRunLoopRun + 2156
14 CoreFoundation 0x029679d3 CFRunLoopRunSpecific + 467
15 CoreFoundation 0x029677eb CFRunLoopRunInMode + 123
16 UIKit 0x013ffd9c -[UIApplication _run] + 840
17 UIKit 0x01401f9b UIApplicationMain + 1225
18 Azkar 0x00002a4d main + 141
19 libdyld.dylib 0x0325f701 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
答案 0 :(得分:17)
这可能是由于不同的人。检查以下内容:
答案 1 :(得分:0)
我知道这是一个老帖子,但万一有人在这里徘徊有类似的问题。我的问题是我们有十几个目标,当我创建SB时我没有选择它们。
在左侧列的“文件检查器”下,确保检查该文件应属于的成员资格。
答案 2 :(得分:0)
就我而言,我不小心输入了情节提要的名称……
答案 3 :(得分:0)
在 info.plist 中,请检查属性 UISceneStoryboardFile 和 UIMainStoryboardFile 的值是否正确
<key>UISceneStoryboardFile</key>
<string>[MY_PROJECT_NAME]</string>
和
<key>UIMainStoryboardFile</key>
<string>[MY_PROJECT_NAME]</string>
答案 4 :(得分:0)
缓存将所有内容弄乱了...在您的终端上运行此操作,并确保清理了其中的所有内容...
sudo rm -rf $HOME/Library/Developer/Xcode/DerivedData/
答案 5 :(得分:0)
我有这个问题,但是它是由它解决的。有情节提要名称问题。我将所有View Controller都保存在Main.storyboard中,因此名称为“ Main”,然后编写情节提要标识符。