Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

hunche
3,339 PointsChallenge task 3 of 4Now let's use the'signUpInBackgroundWithBlock' method to sign up this new user.
Send this message to the newUser variable. For the block parameter, copy and paste the following empty block: ^(BOOL succeeded, NSError *error) {}
the code is as below :
import "SignupViewController.h"
import <Parse/Parse.h>
@implementation SignupViewController
-
(IBAction)signup:(id)sender { self.username = self.usernameField.text; self.password = self.passwordField.text;
PFUser *newUser = [PFUser user]; newUser.username=self.username; newUser.password=self.password;
[newUser signUpInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {}] // I add this line ,but cannot work
}
@end
Please tell me the line I added is there any problem ?
1 Answer

Francisco Navarro
14,185 PointsHi! the only problem I see is the semicolon at the end of the "signUpInBackgroundWithBlock" sentence. Apart from that the code seems to be ok. I've tried it and works for me. Let me know if you continue with the same problem.
hunche
3,339 Pointshunche
3,339 PointsThank you and yes it is only problem miss semicolon.
Christina Gunarto
2,607 PointsChristina Gunarto
2,607 PointsFrancisco Navarro ... I tried using this exact same code, even copied and pasted it but it didn't work, even with the ";" added.
This code did not work for me, can you help by chance? Thanks!
import "SignupViewController.h"
import <Parse/Parse.h>
@implementation SignupViewController
(IBAction)signup:(id)sender { self.username = self.usernameField.text; self.password = self.passwordField.text;
PFUser *newUser = [PFUser user]; newUser.username = self.username; newUser.password = self.password;
[newUser signUpInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {}];
@end