-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Tree Parse object #161
Comments
You cannot do this with a struct as the compiler will not allow it, plus you can easily create a cycle. A class can do this, but this SDK isn’t designed for classes, so you will most likely run into threading issues. Still shouldn’t do this because of the cycle I mentioned earlier. A workaround would be change the parent property to parentObjectId: String? and store the objectId of the parent. Whenever you need the parent, fetch it based off the objectId |
yes i think for now can i only do that :/ thank you |
You also might be able to get away with: struct Pagina : ParseObject {
var objectId: String?
var createdAt: Date?
var updatedAt: Date?
var ACL: ParseACL?
var titolo: [String: String]?
var parent: Pointer<Pagina>? //This will always have to be a pointer instead of an object. The same way it's represented on the server.
} This should work for when you already created your schema using a different parse SDK that uses classes (almost all of them except for the Swift SDK) that uses
Update: If you use this way, be sure you are using Swift SDK 1.8.3+ |
Hi i have a Tree object
with parent is object of the same type
how can i solve this?
The text was updated successfully, but these errors were encountered: