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
Ken Lu
2,711 PointsProblem on the Code Challenge task 3 of 3
Finally, we need to save these changes up to the Parse back-end. The relation is part of the 'playlist' property, where 'playlist' is an instance of PFObject. Save 'playlist' in the background to save the changes to the relation (don't worry about using any blocks).
What's wrong with my try below.
#import "FavoriteMoviesViewController.h"
@implementation FavoriteMoviesViewController
- (void)addVideoToPlaylist:(PFObject *)video {
// Add custom code below!
PFRelation *relation = [self.playlist relationforKey:@"videos"];
[relation addObject:video];
[self.playlist saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (error) {
NSLog(@"Error: %@ %@", error, [error userInfo]);
}
}];
}
@end
1 Answer
John W
21,558 PointsDon't worry about the block. Just use saveInBackground instead.
Ken Lu
2,711 PointsKen Lu
2,711 PointsThanks, it's passed.