A super class like PFObject in Parse

Do you have a plan to implement a super class like PFObject in Parse?

Using PFObject, I don’t need to define my own class before using. For instance:
PFObject *contact = [PFObject objectWithClassName:@“Contact”];
contact[@“name”] = @“Jimmy”;

I feel it is very handful. I don’t see similar feature in the document. If you could have this class, it will be very convenient for development.

That’s not very object-oriented, but that’s okay. We have already added support for this approach in Java/Android and JS. We plan to duplicate it for iOS as well.

Regards,
Mark

Hi Mark, have you duplicated it for iOS or not yet?