0

I am using Parse for ios. When I query the user table with the code below, it returns nothing. There are a few users in the table and it should return all of them.

PFQuery *query = [PFQuery queryWithClassName:@"User"];
NSArray *users = [query findObjects];

1 Answer 1

2

Is this a user table that you created? The actual user table in Parse is not treated like a regular table. You may want to look here for reference: parse forums link

This is pretty much what you're looking for: PFQuery *userQuery = [PFUser query];

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.