I have a PFUser with a Skills column.
Typically I can use user.skills
(or user["skills"]
) to get the skills objects of the user.
But to use these with PFQueryTableViewController
I need to construct some sort of PFQuery when overriding queryForTable
to get the list of skills for a user.
How do I build this query? All it does is return the skills for a given user.