Skip to content

Releases: evermeer/EVReflection

propertyMapping with named parameters

17 Feb 07:59
Compare
Choose a tag to compare
4.3.1

propertyMapping with named parameters

propertyConverters function with named arguments

16 Feb 19:51
Compare
Choose a tag to compare
4.3.0

propertyConverters function with named arguments

fix for carthage

04 Feb 16:26
Compare
Choose a tag to compare
4.2.1

fix for carthage

Dictionary and array helper extensions

03 Feb 07:43
Compare
Choose a tag to compare

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

26 Jan 21:35
Compare
Choose a tag to compare
4.1.0

Adding init for object mapping

cocoapods fix

14 Jan 16:15
Compare
Choose a tag to compare
4.0.10

cocoapod fix

refactor

14 Jan 15:42
Compare
Choose a tag to compare
4.0.9

readme update

CloudKit extension

12 Jan 20:49
Compare
Choose a tag to compare
4.0.8

extra test

Another cocoapods fix

11 Jan 23:02
Compare
Choose a tag to compare
4.0.7

an other cocoapods fix

fix for cocoapods

11 Jan 17:25
Compare
Choose a tag to compare
4.0.6

fix for cocoapods