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 trialJonathan Judelson
6,443 PointsNot sure why I can't get past this code challenge...
Here is my code...frustrated.
username = self.usernameField.text; password = self.passwordField.text;
2 Answers
Holger Liesegang
50,595 PointsHi Jonathan,
username and password are already set properties ("In the signup method, start by capturing the username and password from two UITextField properties: 'usernameField' and 'passwordField'.") so you will have to address them with self like this:
self.username = self.usernameField.text;
self.password = self.passwordField.text;
The complete solution for Challenge task 1 of 4 from "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'." should be:
#import "SignupViewController.h"
#import <Parse/Parse.h>
@implementation SignupViewController
- (IBAction)signup:(id)sender {
self.username = self.usernameField.text;
self.password = self.passwordField.text;
}
@end
Jonathan Judelson
6,443 PointsThank you!