Releases: evermeer/EVReflection
Releases · evermeer/EVReflection
propertyMapping with named parameters
4.3.1 propertyMapping with named parameters
propertyConverters function with named arguments
4.3.0 propertyConverters function with named arguments
fix for carthage
4.2.1 fix for carthage
Dictionary and array helper extensions
You can now do this:
let dict1: NSDictionary = [
"requestId": "request",
"postcode": "1111AA",
"houseNumber": "1"
]
let json = dict1.toJsonString()
print("dict:\n\(dict1)\n\njson:\n\(json)")
let dict2 = NSMutableDictionary(json: json)
print("dict2:\n\(dict2)")
let dict3: NSDictionary = [
"requestId": "post",
"postcode": "1234AA",
"houseNumber": "3"
]
let array:[NSDictionary] = [dict1, dict2, dict3]
let jsonArray = array.toJsonStringArray()
print("json array: \n\(jsonArray)")
let array2 = [NSDictionary](jsonArray: jsonArray)
print("array2:\n\(array2)")
added init for object mapping
4.1.0 Adding init for object mapping
cocoapods fix
4.0.10 cocoapod fix
refactor
CloudKit extension
4.0.8 extra test
Another cocoapods fix
4.0.7 an other cocoapods fix
fix for cocoapods
4.0.6 fix for cocoapods