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 trialMatthew Voracek
754 PointsNot getting the green light here...
I have typed in so many different possible answers for this code challenge that I am assuming things are not working properly on your end. Help?
1 Answer
Holger Liesegang
50,595 PointsHi Matthew,
the question is "Next, create a new PFUser variable named 'newUser' and initialize it using the 'user' class method from PFUser. Set the 'username' and 'password' properties of this user using the properties you just set."
PFUser *newUser = [PFUser user];
newUser.username = self.username;
Now all you've still got to do ist setting the password property of the user the same way I already did with the username.
... and next time please post your code as this would give you a better chance for a faster answer :)
Kind Regards Holger