Created
April 8, 2010 21:02
-
-
Save mattorb/360537 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notes from the web on better debug breakpoints in xcode | |
Run > Manage Breakpoints > Add Symbolic Breakpoint | |
add a breakpoint called "objc_exception_throw" | |
Create a file named .gdbinit and place it in your home directory. This is the contents of mine: | |
fb -[NSException raise] | |
fb -[_NSZombie release] | |
fb szone_error | |
fb objc_exception_throw |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment