Re: simple Project Builder debugger question
Re: simple Project Builder debugger question
- Subject: Re: simple Project Builder debugger question
- From: Vince DeMarco <email@hidden>
- Date: Sat, 12 May 2001 17:45:56 -0700
On Saturday, May 12, 2001, at 01:11 PM, Max J Cantor wrote:
Is there any way to see the value of the string pointed to by an
NSString
id?
As in, if i have an NSString *st, is there any way to see its string in
the debugger.
Actually do a:
po st
po is a shortcut for print-object
vince