I\'m developing a Cocoa application, and I\'m using constant NSStrings as ways to store key names for my preferences.
NSString
I understand this is a good idea b
Try using a class method:
+(NSString*)theMainTitle { return @"Hello World"; }
I use it sometimes.