将项目分配给UITabBar时发生崩溃

时间:2017-08-23 09:31:52

标签: swift xcode uitabbar

如果我在Xcode中放置一个异常断点(所有异常),由于某些奇怪的原因,它会在tabbar.items上中断。

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

    let tabbar = UITabBar()
    let item = UITabBarItem(title: "", image: UIImage(), selectedImage: UIImage())
    tabbar.items = [item]  // --- BREAKS HERE
    return true
}

但是,如果我创建一个空项目并放置相同的行,它就不会崩溃。所以我认为它必须与我的项目有关。

如何调试?

enter image description here

0 个答案:

没有答案