This simple query of Score (subclass of PFObject)...
PFQuery *selfScoresQ = [PFQuery queryWithClassName:[Score parseClassName]];
NSArray *selfScores = [selfScoresQ findObjects];
returns this Assertion failure...
Assertion failure in +[PFObject objectWithClassName:isPointer:]
This query is identical to all my others which work fine. I don't know what this assertion failure means or how to fix it. Please help.
ADDITION: interestingly countObjects works
[selfScores@ countObjects] // success!