如果我在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
}
但是,如果我创建一个空项目并放置相同的行,它就不会崩溃。所以我认为它必须与我的项目有关。
如何调试?