80

this was the answer from the brad larson on this SO question

If you add two breakpoints, you should be able to debug these exceptions. To do this, go to Run | Show | Breakpoints and create two global breakpoints (I do them globally because they are so useful in all my applications). The first should be named "objc_exception_throw" and its location should be "libobjc.A.dylib". The second should be "-[NSException raise]" and its location should be "CoreFoundation".

Now, if you start debugging your application with breakpoints enabled, it should break on the throw of these exceptions. You should then be able to see the chain of events that led to the exception within the debugger.

now in this answer i want to ask how do i add location mentioned???

Community
  • 1
  • 1
Rahul Vyas
  • 28,260
  • 49
  • 182
  • 256

4 Answers4

81

I think Brad's answer is pretty clear; hopefully this can help if you're not finding it clear.

In Xcode, from the top menu click on Run > Show > Breakpoints. A new window pops up.

Select "global breakpoints" in the left hand menu. There should be a box on the right under the "Breakpoint" column with the text "Double-Click for symbol". Single-click in this box and type in "objc_exception_throw".

Then, single-click in the space next to "objc_exception_throw" under the "location" column. A box will appear for you to type in the location (in this case, "libobjc.A.dylib"). I've made a screenshot that will hopefully help:

alt text

Spooky
  • 2,966
  • 8
  • 27
  • 41
h4xxr
  • 11,385
  • 1
  • 39
  • 36
  • 17
    In Xcode 4, there is a breakpoint navigator where you can add these. – Don Apr 07 '11 at 18:14
  • Also you can install [script that prints exception description in console](http://stackoverflow.com/a/29671227/991816), must have! – DanSkeel Apr 16 '15 at 10:11
45

In Xcode 4 this great breakpoint can be added via "+" button on Breakpoints section (⌘ + 6)

enter image description here

Valerii Pavlov
  • 1,986
  • 1
  • 19
  • 30
6

in Xcode 6 -- from top menu

Debug > Breakpoints > Create Exception Breakpoint

Alex Cio
  • 6,014
  • 5
  • 44
  • 74
user3812138
  • 261
  • 4
  • 11
  • The other answers have changed, this answer is the correct one as of April 2017/Xcode8 – Josh Apr 26 '17 at 07:59
4

I would also like to recommend adding the +[NSException raise:format:arguments:] breakpoint and its location should be CoreFoundation.

El Developer
  • 3,345
  • 1
  • 21
  • 40
Ameer Sheikh
  • 770
  • 5
  • 14