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

iOS Build a Self-Destructing Message iPhone App Retrieving and Viewing Data from Parse.com Retrieving Data from Parse.com

warning retrieving data: NSLog(@"Retrieved %d messages", [self.messages count]);

I get a warning: values of type 'NSUInteger' should not be used as format arguments;... I get this warning trying to add these lines:

NSLog(@"Retrieved %d messages", [self.messages count]);

When I downloaded the teachers exercise files, it gives me the same warning, even on his file.

I got it figured out. This is my code and now it works:

(void)viewDidLoad { [super viewDidLoad];

PFUser *currentUser = [PFUser currentUser]; if ( currentUser) { NSLog(@"Current User: %@", currentUser.username);

} else { [self performSegueWithIdentifier:@"showLogin" sender:self]; }

}

(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated];

PFQuery *query = [PFQuery queryWithClassName:@"Messages"]; [query whereKey:@"recipientIds" equalTo:[[PFUser currentUser] objectId]]; [query orderByDescending:@"createdAt"]; [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { if (error) { NSLog(@"Error: %@ %@", error, [error userInfo]); } else { //We found messages self.messages = objects; [self.tableView reloadData]; NSLog(@"Retrieved %d messages", [self.messages count]); }

}]; }

1 Answer

Chelsea, here is a full template for the social network application: Click Here.