Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialthiagobarbosa
1,151 PointsInitialization
Why I do have to alloc and init NSArray but not NSString? NSArray * booksArray = [NSArray arrayWithObjects: @"Hamlet", @"King Lear", @"Othello", @"Macbeth", nil]; NSString * bookTitle = [booksArray objectAtIndex:2];
2 Answers
Holger Liesegang
50,595 PointsHi thiagobarbosaabout,
because NSStrings are used so often there exists a literal syntax version (short version) for the NSString Class where @"string" equals [[NSString alloc] initWithString:(NSString *)aString].
You can find some more info at Strings Are Represented by Instances of the NSString Class and it states "There are various ways to create NSString objects, including standard allocation and initialization, class factory methods or literal syntax".
Kind Regards Holger
thiagobarbosa
1,151 PointsHolger, thank you for you help. I'll read it right now.