Reputation: 23
If I delete Exception BreakPoint ,all will be ok. But When I add Exception breakPoint to debug ,something wrong:
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 and run, project always break at [self.window makeKeyAndVisible] ,click "continue programe execution" button some times,it can be run
Upvotes: 1
Views: 392
Reputation: 4739
Edit Exception breakpoint like this-
And select Objective C like this-
Hope this helps!
Upvotes: 6