Releases: freshOS/Arrow
Releases · freshOS/Arrow
Swift 4.1 & Xcode 9.3
- Updated for Swift 4.1 & Xcode 9.3
Swift 4 & Xcode9
Migrates the codeBase to swift 4 :)
Framework built with Xcode 8.3.1
3.0.5 3.0.5
Finer Date Parsing
Date Parsing can now use DateFormatter objects allowing for finer control
Suggested by @glaurent 👏
Introduces ArrowInitilizable
Introduces ArrowInitilizable protocol
3.0.2
Swift 3 is here !
3.0.0 3.0.0
Array of Enum
Adds support for Array of Enum parsing \o/
2.0 is here!!
Nested values
value <-- json["nested.nested.nested.nestedValue"]
Object at index
value <-- json[12]
Combine both
value <-- json[1]?["someKey"]?[2]?["something.other"]
Looping on Array
if let collection = json.collection {
for jsonEntry in collection {
//Do something
}
}
Custom Date format
createdAt <-- json["created_at"]?.dateFormat("yyyy-MM-dd'T'HH:mm:ssZZZZZ")