[realm beginWriteTransaction];
[realm addObject:mydog];
[realm commitWriteTransaction];
Dog *new_dog = [[Dog alloc] initWithObject:mydog];
[realm beginWriteTransaction];
[realm deleteObject:mydog];
[realm commitWriteTransaction];
new_dog.age = 4;
[realm beginWriteTransaction];
[realm addObject:new_dog];
[realm commitWriteTransaction];
Which results in:
*** Terminating app due to uncaught exception 'RLMException', reason: 'Adding a deleted or invalidated object to a Realm is not permitted' ***
--
You received this message because you are subscribed to the Google Groups "Realm" group.
To unsubscribe from this group and stop receiving emails from it, send an email to realm-cocoa...@googlegroups.com.
To post to this group, send email to realm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/realm-cocoa/9f5af3ce-3fe3-49c2-8b73-bf901578903e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.