Re: simple Project Builder debugger question
Re: simple Project Builder debugger question
- Subject: Re: simple Project Builder debugger question
- From: Arno <email@hidden>
- Date: Sat, 12 May 2001 13:19:15 -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.
Yes. In the console, type:
call (void)CFShow(st)
This works for any object, not just strings.
Arno.