vote up 1 vote down star
1

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 http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en for the question I posted to the iPhoneSDK Google Group.)

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?

Update: Learning the details of the exception from the Debugger Console was enough to help me solve the problem. (See http://groups.google.com/group/iphonesdk/browse_frm/thread/6f44a90fdb8da28a?hl=en.) I verified that I could set a symbolic breakpoint on objc_exception_throw, but I didn't look to see if the backtrace from there would have been helpful.

flag

2 Answers

vote up 6 vote down check

Put a breakpoint at objc_exception_throw and run your app via Debug instead of Run

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.

link|flag
How do you add a breakpoint to objc_exception_throw? – Lounges Dec 21 at 20:33
Hit ⌘⌥B, select Run → Show → Breakpoints, or select Run → Manage Breakpoints → Add Symbolic Breakpoint. – Kevin Ballard Dec 21 at 20:38
That was unintuitive and made things much much easier. Thanks! +1 – Zxaos Jun 27 at 7:15
vote up 0 vote down

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).

Once I was inside that function I could call sin and even call another function (inside the same file) that called sin.

link|flag
NEVER MIND THIS COMMENT WRONG PAGE LOL – yan bellavance Jul 2 at 16:37

Your Answer

Get an OpenID
or

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