Realm-JSON
Realm-JSON copied to clipboard
A concise Mantle-like way of working with Realm and JSON.
Hello! I have just update my pods and with the new version of Realm (3.0.0) this identifier is not available, so RLMObeject+Copying.m file is not compiling... any help?
[!] The dependency `AFNetworking` is not used in any concrete target. The dependency `Realm+JSON (from `../`)` is not used in any concrete target.
How to update podspace and push to cocoapod?
update realm version 2.8.3
'RLMException', reason: 'Invalid value '0' for property 'imageIndex' Model :@property NSString *booksID; @property NSString *bookName; @property NSNumber *imageIndex;
is Realm-Json going to add support to Realm 2.0.2? and can you update the podspec with cocoapods so it will support the latest commit (0.2.16)
The version was bumped in the `Realm+JSON.podspec` file already, but cause the tag is missing CocoaPods doesn't picked it up and shows the old versio
Currently this doesn't work with Swift because when the class is matched by string it doesn't take into account Swift's module prefix. It doesn't necessarily seem like a complicated fix...
The RLMArray class will be missed when only using subclass, to judge the string of class is necessary. Just as: [classString isEqualToString:@"RLMArray"]
Let's say my object has a property which is a RLMArray of another object. I want to map each object of this array into a single int (which is its...