Re: CFPreferences
Re: CFPreferences
- Subject: Re: CFPreferences
- From: Shawn Erickson <email@hidden>
- Date: Fri, 27 Jan 2006 15:38:48 -0800
On 1/27/06, Alan Smith <email@hidden> wrote:
> NSLog(myString);
Logging a string the above way is bad since NSLog will evaluate
myString as a format string instead which depending on the contents of
the string can result in strange output and potentially crash your
application.
NSLog(@"%@", myString);
-Shawn
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden