This repository was archived by the owner on Jun 13, 2023. It is now read-only.
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
parseObject method can't parse complex PFObjects #64
Closed
Description
Hi @richardjrossiii , is it possible to improve parseObject<T: PFObject>(objectDictionary: [String:AnyObject])
method, so it correctly parses complex PFObject
s? Currently it even leaves PFACL
as a plain dictionary, which causes an error on saving the object later ([NSCFDictionary hasUnresolvedUser] unrecognized selector sent to instance
)
I was thinking of using (instancetype)ACLWithDictionary:(NSDictionary *)dictionary
method, but it seems marked as a private.
Is there a way to use a standard Parse iOS SDK for parsing the server's response to PFObject
?