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 trialVincent K
3,356 PointsList of Recipients Not Populating?
After I select the photo to send to a recipient, it goes to list of recipients, but only one person's name is showing. I reckon I've followed the code correctly.
Might it be because I only added the extra users today and it's not properly configured via parse.com yet?
Any other reason this might be happening?
1 Answer
Joe Susnick
5,042 PointsMost likely you're either forgetting to call [self.tableView reloadData]; in the findObjectsInBackgroundWithBlock callback, or you have the code in viewDidLoad instead of viewWillAppear.
Kevin Hamil
8,203 PointsKevin Hamil
8,203 PointsI don't recall exactly the progression of the tutorials, but I'm guessing you've already progressed past the part where you make sure your app updates Parse in the background and then your app is updated with Parse's new data in viewWillAppear?
If so, do you remember that all working and populating correctly? Like you said, I'm thinking maybe your friends hasn't updated. If that's the case you could stop running the app and then relaunch it... see if it updates.
Hard to determine without more info than that, but I would start with your assumption.