How do I find out what exception was thrown in the Xcode debugger (for iPhone)? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:51:29Zhttp://stackoverflow.com/feeds/question/384775http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384775/how-do-i-find-out-what-exception-was-thrown-in-the-xcode-debugger-for-iphone1How do I find out what exception was thrown in the Xcode debugger (for iPhone)?Daryl Spitzer2008-12-21T18:31:44Z2009-07-02T16:35:48Z
<p>I'm learning iPhone programming from Erica Sadun's The iPhone Developer's Cookbook. When I run the app I created by following the steps in the Temperature Conversion Example starting on page 81 in the simulator, it terminates due to an uncaught exception. (See <a href="http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en" rel="nofollow">http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en</a> for the question I posted to the iPhoneSDK Google Group.)</p>
<p>The exception is thrown after calling UIApplicationMain() from my main(). If I look through the stack trace in the debugger, all I see is (of course) assembly. How do I find out what kind of exception was thrown? </p>
<p><strong>Update</strong>: Learning the details of the exception from the Debugger Console was enough to help me solve the problem. (See <a href="http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en" rel="nofollow">http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en</a>.) I verified that I could set a symbolic breakpoint on <code>objc_exception_throw</code>, but I didn't look to see if the backtrace from there would have been helpful.</p>
http://stackoverflow.com/questions/384775/how-do-i-find-out-what-exception-was-thrown-in-the-xcode-debugger-for-iphone/384795#3847956Answer by Kevin Ballard for How do I find out what exception was thrown in the Xcode debugger (for iPhone)?Kevin Ballard2008-12-21T18:51:15Z2008-12-21T19:19:04Z<p>Put a breakpoint at <code>objc_exception_throw</code> and run your app via Debug instead of Run</p>
<p>To clarify, what you're actually seeing when you get an exception without the breakpoint is the same stack trace always - it's the uncaught exception handler. The type of exception is logged to the Run console, but if you want to see a backtrace for where the exception was raised, that's what the breakpoint is for.</p>
http://stackoverflow.com/questions/384775/how-do-i-find-out-what-exception-was-thrown-in-the-xcode-debugger-for-iphone/1075407#10754070Answer by yan bellavance for How do I find out what exception was thrown in the Xcode debugger (for iPhone)?yan bellavance2009-07-02T16:35:48Z2009-07-02T16:35:48Z<p>Ok I found a workaround this morning and also why (sort of) the program was failing. After further inspection I found out that the problem was occurring for many C-functions not just the ones in math.h The solution was to put the C function outside of the .m file ie in a separate .c/.h setup, then to call the c function from inside an obj-C method then to call sin(). I can call any C-function inside objective-C methods but if that function is inside a .m file you cannot call any other C functions once you are in that function(at least no functions that are outside of the .m file..including cos,sin) or else you get EXC_BAD_ACCES (which is odd).</p>
<p>Once I was inside that function I could call sin and even call another function (inside the same file) that called sin.</p>