Re: C string constant->NSString constant without defining twice?
Re: C string constant->NSString constant without defining twice?
- Subject: Re: C string constant->NSString constant without defining twice?
- From: Dave DeLong <email@hidden>
- Date: Mon, 27 Apr 2009 21:39:45 -0600
#define kConstCString "This is a const c string"
#define kConstNSString @kConstCString
HTH,
Dave
On Apr 27, 2009, at 9:35 PM, Erg Consultant wrote:
Is there a macro for defining an NSString constant as a previously
defined C string constant without having to actually define the
string in two places? I have something like the following:
#define kTempQuagmireHackFilePathCString
"/private/tmp/quagmire.dat"
#define kTempQuagmireHackFilePathNSString
@"/private/tmp/quagmire.dat"
But I only want to have to define the path in the top define and
then use the C string define to define the NSString define.
Thanks,
Erg
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please 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