XCode debugger
Isn’t it funny how sometimes we just work around problems, putting up with them for as long as we can?
Well, I finally got sick of a problem that I was having with XCode: whenever I would get a crash, the debugger would stop on the Application Main, and I’d just get a bunch of machine language in the console. In previous XCode versions, it’d be all friendly and tell you where your problem was.
So I finally cracked and decided to fix it. Here’s what you have to do:
1. Click on the breakpoints icon to go to the Breakpoints Navigator
2. Click on the plus at the bottom
3. Add an Exception Breakpoint…
4. Click Done.
That’s it! Whenever you crash, xcode will now take you directly to the line of code again. HURRAH!

