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
Robert Conti
23,274 PointsSelf-Destruct MSG App Code Challenge: Help debug my code!
The code challenge prompts: 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 have coded the following in the SignupViewController.m file in the signup method:
#import "SignupViewController.h"
#import <Parse/Parse.h>
@implementation SignupViewController
- (IBAction)signup:(id)sender {
NSString *username = self.usernameField.text;
NSString *password = self.passwordField.text;
}
@end
This model follows the project structure identically, so why doesn't this work? Am I missing something?
1 Answer
Kristen Law
16,244 PointsIt looks like the code challenge is asking you to store the values in already existing properties, so you don't need to create new variables, just access them using self.
See below:
self.username = self.usernameField.text;
self.password = self.passwordField.text;
Robert Conti
23,274 PointsRobert Conti
23,274 PointsWow, that simple. Thanks Kristen!