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 trialSpencer Cook
4,823 PointsCan't get past this code challenge...
In this code challenge, I am suppose to connect the text fields to two variables for username and password. I can't see why this code is not right below. Am I missing some syntax?
import "SignupViewController.h"
import <Parse/Parse.h>
@implementation SignupViewController
-
(IBAction)signup:(id)sender {
NSString *username = self.usernameField.text; NSString *password = self.passwordField.text;
}
@end
2 Answers
Dennis Walsh
5,793 PointsSpencer,
You are creating two new fields in the signup method, but you need to assign them to the properties you created for those fields. You should have created a property called username and another called password. You need to set those properties to the values in the text fields.
- (IBAction)signup:(id)sender {
self.username = self.usernameField.text;
self.password = self.passwordField.text;
}
Spencer Cook
4,823 PointsThanks!