Re: SEL and NSSelectorFromString
Re: SEL and NSSelectorFromString
- Subject: Re: SEL and NSSelectorFromString
- From: Jeff Galyan <email@hidden>
- Date: Sun, 20 Jan 2002 11:07:25 -0700
>
JB> {
>
JB> NSLog(@"%@",@"\nItem1 selected");
>
JB> }
>
You can make life easier for yourself with the NSLog call by changing it to
this:
NSLog(@"Item1 selected");
NSLog puts newlines in at the end of every line it logs automatically. You
only need to use printf-style formatting strings if you're going to pass
more than one arg to NSLog.
--Jeff