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???

link|improve this question

80% accept rate
Anyone have screenshots/menu paths for XCode 4? – buildsucceeded Sep 10 '11 at 12:19
Check out this thread on the Apple Dev Forums for instructions on how to do this in XCode 4: devforums.apple.com/thread/68421 – Andy Sinclair Oct 18 '11 at 19:12
feedback

2 Answers

up vote 39 down vote accepted

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

link|improve this answer
thanks for your very clear answer – Rahul Vyas Jul 23 '09 at 10:27
This is really helpful, thanks // :) – Spanky Nov 11 '09 at 3:08
Works great. Thanks for the detail. – Rob Segal Sep 22 '10 at 18:26
7  
In Xcode 4, there is a breakpoint navigator where you can add these. – Don Apr 7 '11 at 18:14
feedback

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

link|improve this answer
Thank You @el-developer – Ameer Sheikh May 15 at 7:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.