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
Chip Beasley
5,974 PointsAdd points to selected row in Parse
Hello Everybody- I am trying to add a point system to selected friends on the Ribbet app.
I want to be able to add points to the selected friend and add it to their total points.
I created an action and this is what it looks like:
-
(IBAction)dailyPoints:(id)sender {
PFObject *points = [PFObject objectWithoutDataWithClassName:@"Junkballers" objectId:[PFUser currentUser]];
[points setObject:@5 forKey:@"points"];
[points save]; }
When I run the compiler, it looks at me like the mean girls looked at me in high school when I asked them out. I am flummoxed.