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 trialFred Myers
15,744 PointsCode Challenge: NSString
In the 3rd task in NSString code challenge we are asked to combine the 2 variable using the stringByAppendingString method. Below is my code. This looks correct to me. Please, help.
NSString *color = @"Purple";
NSString *preference = @"My favorite color is";
NSString *favorite = [preference stringByAppendingString:color];
This code is straight from the apple docs and looks the same to me.
NSString *errorTag = @"Error: ";
NSString *errorString = @"premature end of file.";
NSString *errorMessage = [errorTag stringByAppendingString:errorString];
3 Answers
John W
21,558 PointsYour solution is technically right. The accepted answer requires an additional space at the end of your preference NSString. I think Amit Bijlani indicated in another thread that this will be fixed.
Fred Myers
15,744 PointsOh sorry. I looked. I must have not looked far enough. Thanks!
nemanjasreckovic
8,784 Pointsif you want to skip it just add like this, other then that your solution is right.
NSString *favorite = [[preference stringByAppendingString:@" "] stringByAppendingString:color];