A pure-Swift JSON serializer and deserializer.
Lot's of CocoaPods means lots of failed namespaces. The actual pod for this library is called PureJsonSerializer.
pod'PureJsonSerializer'import PureJsonSerializer
// parse a JSON data
letdata:NSData=...do{letjson=tryJson.deserialize(jsonSource)letvalue=json["Foo"]?["bar"]?.stringValue ??""print(value)}catch{print("Json serialization failed with error: \(error)")}// build a JSON structure
letprofile:Json=["name":"Swift","started":2014,"keywords":["OOP","functional programming","static types","iOS"],]println(profile.description) // packed JSON string
println(profile.debugDescription) // pretty JSON stringletserializedJson= json.serialize(.PrettyPrint)Swift-JsonSerializer is a JSON serializer and deserializer which are implemented in Pure Swift and adds nothing to built-in / standard classes in Swift.
This library is featured in a complete Json mapping library you can find here.
- This library doesn't work with optimization flags (
swiftc -O) as of Xcode 6.1.1 / Swift version 1.1 (swift-600.0.56.1).
Fuji, Goro (gfx) gfuji@cpan.org
The Apache 2.0 License