Skip to content

gfx/Swift-PureJsonSerializer

Repository files navigation

PureJsonSerializer Build Status Carthage compatible

A pure-Swift JSON serializer and deserializer.

COCOAPODS

Lot's of CocoaPods means lots of failed namespaces. The actual pod for this library is called PureJsonSerializer.

pod 'PureJsonSerializer'

DESERIALIZE

import PureJsonSerializer // parse a JSON data let data: NSData = ... do { let json = try Json.deserialize(jsonSource) let value = json["Foo"]?["bar"]?.stringValue ?? "" print(value) } catch { print("Json serialization failed with error: \(error)") }

BUILD

// build a JSON structure let profile: Json = [ "name": "Swift", "started": 2014, "keywords": ["OOP", "functional programming", "static types", "iOS"], ] println(profile.description) // packed JSON string println(profile.debugDescription) // pretty JSON string

SERIALIZE

let serializedJson = json.serialize(.PrettyPrint)

DESCRIPTION

Swift-JsonSerializer is a JSON serializer and deserializer which are implemented in Pure Swift and adds nothing to built-in / standard classes in Swift.

GENOME

This library is featured in a complete Json mapping library you can find here.

KNOWN ISSUES

  • 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).

SEE ALSO

AUTHOR

Fuji, Goro (gfx) gfuji@cpan.org

LICENSE

The Apache 2.0 License

About

a pure-Swift JSON serializer and deserializer

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors