iPhone Dev - NSString Creation - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T19:34:54Z http://stackoverflow.com/feeds/question/1210319 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1210319/iphone-dev-nsstring-creation 0 iPhone Dev - NSString Creation Mk12 http://stackoverflow.com/users/148195 2009-07-31T02:01:17Z 2009-07-31T02:09:30Z <p>I'm really confused with NSStrings. Like when should I do</p> <pre><code>NSString *aString = @"Hello"; </code></pre> <p>of should it be:</p> <pre><code>NSString *aString = [[NSString alloc] initWithString:@"Hello"]; </code></pre> <p>But then its different when you're assigning a value to an NSString property isn't it? Can someone clear this up for me?</p> <p>Thanks!!</p> http://stackoverflow.com/questions/1210319/iphone-dev-nsstring-creation/1210333#1210333 0 Answer by micmoo for iPhone Dev - NSString Creation micmoo http://stackoverflow.com/users/126644 2009-07-31T02:07:17Z 2009-07-31T02:07:17Z <p>This question has been asked multiple times:</p> <p><a href="http://stackoverflow.com/questions/329977/cocoa-memory-management-with-nsstring">http://stackoverflow.com/questions/329977/cocoa-memory-management-with-nsstring</a> <a href="http://stackoverflow.com/questions/637022/do-nsstring-objects-need-to-be-alloc-and-init">http://stackoverflow.com/questions/637022/do-nsstring-objects-need-to-be-alloc-and-init</a></p> <p>Compiler allocated strings (of the format @"STRING") are constant, and so -retain, -release, and -autorelease messages to them are ignored. You don't have to release or autorelease foo in this case (but it won't hurt).</p> http://stackoverflow.com/questions/1210319/iphone-dev-nsstring-creation/1210338#1210338 0 Answer by jbrennan for iPhone Dev - NSString Creation jbrennan http://stackoverflow.com/users/106658 2009-07-31T02:09:24Z 2009-07-31T02:09:24Z <pre><code>NSString *aString = @"Hello"; </code></pre> <p>Will create an <code>autoreleased</code> string. That is, if you don't explicitly <code>retain</code> it, it will might disappear after your method is over (and sometimes that's totally fine). But if you want to hold on to it past that time, you'll need to retain it.</p> <p>If you create a property for that string like this</p> <pre><code>@property (retain) NSString *aString; </code></pre> <p>And then assign like this:</p> <pre><code>self.aString = @"Hello"; </code></pre> <p>Then you've properly retained the string and it will stick around.</p> <p>On the other hand, using <code>alloc, init</code> will create a string for you with a retain count of 1, and if you don't need it past that method, you should <code>release</code> it.</p> <p><strong>**Edit: @"Hello" is not an autoreleased string, as others have pointed out. My bad. **</strong></p> http://stackoverflow.com/questions/1210319/iphone-dev-nsstring-creation/1210339#1210339 2 Answer by Louis Gerbarg for iPhone Dev - NSString Creation Louis Gerbarg http://stackoverflow.com/users/30506 2009-07-31T02:09:30Z 2009-07-31T02:09:30Z <p>In general you should do the first, but they are mostly functionally the same. You can treat constant NSStrings just like normal NSString string objects, for instance:</p> <pre><code>[@"Hello" length] </code></pre> <p>will return 5. You can assign them to properties, everything just works. The one thing you might notice is that with the constant NSStrings you don't have to worry about retain/release. That is because they are actually mapped into the applications readonly data section, and don't have allocated memory. Retain and release calls against them still work, they just become noops.</p>