How do we release NSString that is not alloc or evern other objects?
Example:
NSString *test = @"testing";
Thanks for your help.
How do we release NSString that is not alloc or evern other objects?
Example:
NSString *test = @"testing";
Thanks for your help.
You don't. You just release the objects you own. You own the object if you used alloc, copy or new keywords when instantiating them.