How would I go about displaying a list of all users in the parse.com database in a tableview and then when they click on each table, display that particular user's information.
All I know is that in order to query the users I must use:
PFQuery *query = [PFUser query];
Thank you in advance and any help is much appreciated.
I assume you know how to use table view. So I'll implement it this way:
1.create a property
2.In viewDidAppear execute the query:
3.You need to implement table view code, the most important is cell
Beside that you also need all of the required table view's data source code to tell it the number of cell. If you'll need some help with that just tell.