RealmJSON is a concise Mantle-like way of working with Realm and JSON.
Breaking Change:
- Method – deepCopy replaces the previous functionality of – shallowCopy, which no longer maintains an object’s primary key
- Updated to use native primary key support in Realm 0.85.0
- Update your code to use methods -createOrUpdateInRealm:withJSONArray: or -createOrUpdateInRealm:withJSONDictionary:
- You must wrap these methods in a write transaction (between [realm beginWriteTransaction]; and [realm commitWriteTransaction];)
- These methods call -createOrUpdateInRealm:withObject: behind the scenes for performance.
