异常断点在[self.window makeKeyAndVisible]
问题描述:
如果我删除Exception BreakPoint,一切都会好的。但是当我添加异常断点调试,一些错误:异常断点在[self.window makeKeyAndVisible]
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
self.tabBarController = [[ALTabBarController alloc] init];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
breakpoint like this 和运行,项目始终处于[self.window makeKeyAndVisible]打破,单击“继续执行PROGRAME”按钮有时,它可以运行
self.tabBarController可以为空吗? – jestro
它抛出了什么异常? –
当没有breakPoint时,项目可以运行成功 – koky