Can I access all the object keys?

I have a project using the legacy Parse-SDK-iOS library, and I would like to replace it by the new Parse-Swift one.

In this project, I often had to use the allKeys property of the PFObjects, as well as the value(forKey:) and object(forKey:) functions. Are these now unavailable?

Thank you for your help

You should look through the Playgrounds files to see how to access keys. They are accessed just like any other property on a swift based object:

1 Like

Hi @cbaker6 and thank you for your answer.