Re: credits.rtf problem
Re: credits.rtf problem
- Subject: Re: credits.rtf problem
- From: Nick Zitzmann <email@hidden>
- Date: Mon, 22 Jan 2007 01:36:15 -0700
On Jan 22, 2007, at 12:14 AM, Stefan Wolfrum wrote:
In the call stack I can see the "history" from main to [NSException
raise] but how
can I actually see the contents of that NSCFDictionary and find the
reason for
the exception?
Use the ABI. On PPC, arguments passed into a function call are stored
in the registers $r3, $r4, $r5, etc. On 32-bit Intel, it's $ebp+8,
$ebp+12, $ebp+16, etc. The first argument in any ObjC message is
always self, so typing "po $r3" on PPC and "po *(int *)($ebp+8)" on
Intel would print the exception's description.
Nick Zitzmann
<http://www.chronosnet.com/>
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden