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 Capturing Photo and Video Using UIImagePickerController Uploading the File and Message

List 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?

Kevin Hamil
Kevin Hamil
8,203 Points

I 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.

1 Answer

Joe Susnick
Joe Susnick
5,042 Points

Most likely you're either forgetting to call [self.tableView reloadData]; in the findObjectsInBackgroundWithBlock callback, or you have the code in viewDidLoad instead of viewWillAppear.