Re: debugging
Re: debugging
- Subject: Re: debugging
- From: Chris Espinosa <email@hidden>
- Date: Wed, 18 Oct 2006 10:10:17 -0700
On Oct 18, 2006, at 2:01 AM, Camille GOUREAU-SUIGNARD wrote: the debugger stop in this configuration:
Thread: #0 0xfffeff20 in objc_msgSend_rtp
This is the utility Objective-C message send routine. It's a very common place to crash in a wide variety of circumstances. What is really important is the information in the crash itself and the information further up the stack, which will tell you what line of your source code was executing, and what message was being sent to what object.
One way to do this is to use the Call Stack table in the Debugger view. Click the second item in it and you should see the line of code that is causing the crash. And look in the Status Line at the bottom of the window for the specific reason for the crash.
Chris |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >debugging (From: Camille GOUREAU-SUIGNARD <email@hidden>) |