I'm developing an app and there will be user accounts. So my first step is for the user to enter their full name but every time I get this error:
[Error]: invalid field name: Full Name (Code: 105, Version: 1.7.1)
Here is my code:
//Gets text from TextField when TextField finished editing
-(IBAction)getFullName:(id)sender {
fullN = self.fullName.text;
}
//Main Method
- (IBAction)signUp:(id)sender{
PFObject *users = [PFObject objectWithClassName:@"Users"];
users[@"Full Name"] = fullN;
[users saveInBackground];
}
Please help!