繁体   English   中英

无法在捆绑包中加载NIB:“使用Swift在iOS中使用NSBundle

[英]Could not load NIB in bundle: 'NSBundle in iOS with Swift

当我尝试从登录页面切换到Tabbar控制器后,我的应用程序不再运行

警告在下面。

2016-06-01 18:15:49.255 noonting[62702:982483] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </Users/HK/Library/Developer/CoreSimulator/Devices/F801E079-1231-47D6-B108-0644D7F82931/data/Containers/Bundle/Application/48A07480-11CA-4140-AA53-A405473635C3/noonting.app> (loaded)' with name 'Home' and directory 'Main.storyboardc''
*** First throw call stack:
(
    0   CoreFoundation                      0x000000010e6b4d85 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x0000000110458deb objc_exception_throw + 48
    2   CoreFoundation                      0x000000010e6b4cbd +[NSException raise:format:] + 205
    3   UIKit                               0x000000010f2a4c89 -[UINib instantiateWithOwner:options:] + 499
    4   UIKit                               0x000000010f61f314 -[UIStoryboard instantiateViewControllerWithIdentifier:] + 181
    5   UIKit                               0x000000010f61f467 -[UIStoryboard instantiateInitialViewController] + 69
    6   UIKit                               0x000000010eedc89f -[UIApplication _loadMainStoryboardFileNamed:bundle:] + 94
    7   UIKit                               0x000000010eedcbcf -[UIApplication _loadMainInterfaceFile] + 260
    8   UIKit                               0x000000010eedb3ef -[UIApplication _runWithMainScene:transitionContext:completion:] + 1392
    9   UIKit                               0x000000010eed8714 -[UIApplication workspaceDidEndTransaction:] + 188
    10  FrontBoardServices                  0x00000001123138c8 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 24
    11  FrontBoardServices                  0x0000000112313741 -[FBSSerialQueue _performNext] + 178
    12  FrontBoardServices                  0x0000000112313aca -[FBSSerialQueue _performNextFromRunLoopSource] + 45
    13  CoreFoundation                      0x000000010e5da301 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    14  CoreFoundation                      0x000000010e5d022c __CFRunLoopDoSources0 + 556
    15  CoreFoundation                      0x000000010e5cf6e3 __CFRunLoopRun + 867
    16  CoreFoundation                      0x000000010e5cf0f8 CFRunLoopRunSpecific + 488
    17  UIKit                               0x000000010eed7f21 -[UIApplication _run] + 402
    18  UIKit                               0x000000010eedcf09 UIApplicationMain + 171
    19  noonting                            0x000000010e0f7be2 main + 114
    20  libdyld.dylib                       0x0000000110f2592d start + 1
    21  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

我的第一个尝试代码如下。 “主页”是标签栏控制器的标识符

self.performSegueWithIdentifier("Home", sender: nil)

let appDelegate = UIApplication.sharedApplication().delegate! as! AppDelegate

let initialViewController = self.storyboard!.instantiateViewControllerWithIdentifier("Home") //as! UIViewController
appDelegate.window?.rootViewController = initialViewController
appDelegate.window?.makeKeyAndVisible()

我的第二个尝试代码的一部分如下:

let storyboard: UIStoryboard = UIStoryboard(name:"Main", bundle: NSBundle.mainBundle())
let tabBarController: UITabBarController = storyboard.instantiateViewControllerWithIdentifier("Home") as! UITabBarController

您是否在页面之间进行了搜索? 您是否将segue identifier设置为“主页”? 如果是这样,只留下一行代码,它将起作用

self.performSegueWithIdentifier("Home", sender: nil)

另一方面,如果确实将Tabbar控制器标识符(由于使用情节Storyboard ID ,这是Tabbar控制器的身份检查器中的Storyboard ID字段)设置为“主页”,则可以使用以下代码:

let appDelegate = UIApplication.sharedApplication().delegate! as! AppDelegate

let initialViewController = self.storyboard!.instantiateViewControllerWithIdentifier("Home") //as! UIViewController
appDelegate.window?.rootViewController = initialViewController
appDelegate.window?.makeKeyAndVisible()

您的日志告诉我您没有设置此标识符。 不要将其与segue标识符混淆,这是不同的事情,您更喜欢为它们使用不同的字符串。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM