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 trial

iOS

Italo Borges
Italo Borges
7,238 Points

Build a Self-Destructing iOS

I'm having some problems with a challenge. The chapter is in "Using Parse.com as a Backend and Adding Users" and the challenge is "Signing Up New Users Part 2 - PFUser"

In our view controller below we want to sign up new users for our app. In the signup method, start by capturing the username and password from two UITextField properties: 'usernameField' and 'passwordField'. Store the values in the properties 'username' and 'password'.

I just answer with:

NSString *username = self.usernameField.text;
NSString *password = self.passwordField.text;

Where am i doing wrong?

1 Answer

Amit Bijlani
STAFF
Amit Bijlani
Treehouse Guest Teacher

The challenge is asking you to store the values in properties called 'username' and 'password'. So you need not create local variables just use the existing properties.

self.username = self.usernameField.text;
self.password = self.passwordField.text;