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!
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 trial

Bryan Deffinger
359 Points1st iOS question.
I am a newbie and need help. What is the answer to the first question on how to build an iOS app?
6 Answers

Holger Liesegang
50,595 PointsYou were asked to name the variable myString:
NSString *myString = @"Fun with Objective-C";

Holger Liesegang
50,595 PointsHi Bryan,
Welcome to Treehouse. Would you mind posting the question, please?
Kind Regards Holger

Bryan Deffinger
359 PointsCreate a NSString variable named 'myString' with the value 'Fun with Objective-C'.

Holger Liesegang
50,595 PointsYou create NSString variables like this:
NSString *myStringVariable = @"This is some text";

Bryan Deffinger
359 PointsSo I wrote NSString *myStringVariable = @"Fun with Objective-C" ; and it says something is wrong check your syntax

Bryan Deffinger
359 PointsAhhh..Thank you! :)