I would like to add a static NSString to an Objective-C class, however I am wary of managing its memory.
NSString *myImportantString = 0;
@implementation MySingletonClass
/* Option 1 */
+ (void)initialize {
myImportantString = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"criticalFolder"];
}
/* Option 2 */
+ (void)initialize {
NSString *tmp = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"criticalFolder"];
myImportantString = [[NSString alloc] initWithString:tmp];
}
In Option 1, myImportantString is an autoreleased object, so how do I know where/when it will be released? This uncertainty prompted me to instead use Option 2. However, as I am using ARC, How/when (if ever?) will it be released? According to the +initialize method, myImportantString is not used again in the method, and thus wouldn't ARC insert the appropriate release code at the end of the +initialize method?
I am (relatively) confident that it will be handled correctly for me, but I would still like to know how it works.
myImportantStringsupposed to be local to this .m file or is to be global to the app? If you don't haveextern NSString *myImportantString;in the .h file, you need to change it in the .m file to bestatic NSString *myImportantString;. – rmaddy Dec 6 '12 at 4:52