EVReflection icon indicating copy to clipboard operation
EVReflection copied to clipboard

Reflection based (Dictionary, CKRecord, NSManagedObject, Realm, JSON and XML) object mapping with extensions for Alamofire and Moya with RxSwift or ReactiveSwift

Results 23 EVReflection issues
Sort by recently updated
recently updated
newest added
trafficstars

Realm object is empty here's the model declaration: **Category.swift** ``` import EVReflection import RealmSwift @objcMembers class Category : Object, EVReflectable { override class func primaryKey() -> String? { return "id"...

We are facing significant crashes with EVReflection and Ios13. Please find the crashlog 0 libdyld.dylib 0x1968d4684 dyld3::closure::ObjCStringTable::hash(char const*, unsigned long) const + 16 1 libdyld.dylib 0x1968d4c98 dyld3::closure::ObjCStringTable::getIndex(char const*) const +...

I have about 17KB of data that I parse and it takes about 4s in my app. However I downloaded the EVReflection code, added my classes and ran the Performance...

help wanted

I tried to reply to the old issue I had which had already been closed. I wish I hadnt been busy so I could have tested and replied to weather...

Issue with workaround

Can i use any online website to convert json to class?

question
fixed?

I've been using EVReflection with Alamofire, Moya and RxSwift with absolutely no issues. An excerpt of the Podfile is as follows: ```ruby pod 'Alamofire' pod 'RxSwift' pod 'Moya/RxSwift' pod 'EVReflection/MoyaRxSwift'...

If using propertyConverters to convert an id to an object when encoding. Upon decoding, the convert does not replace the object with an ID but instead replaces it with an...

First of all, thank you for this library, it has made parsing huge feeds a pleasure! I would like to ask, if it's possible to force a value to be...

question
fixed?

Reflection from Decimal to NSDecimalNumber doesn't work due the following error: 'Unacceptable type of value for attribute: property = "FIELD_NAME"; desired type = NSDecimalNumber; given type = __NSDictionaryM; value =...

``` public class Address: EVManagedObject { override public func propertyMapping() -> [(keyInObject: String?, keyInResource: String?)] { return [ (keyInObject: "firstName",keyInResource: "first_name"), (keyInObject: "lastName",keyInResource: "last_name"), (keyInObject: "address1",keyInResource: "address_1"), (keyInObject: "address2",keyInResource: "address_2")...