10

Here’s another Swift based library for working with JSON data called ObjectMapper from Hearst-DD allowing you to easily map objects to and from JSON.

ObjectMapper allows you to easily map data to Swift objects by implementing their protocol with support for url and date transformations, custom transformations, and nested objects in your JSON.

This example from the readme shows an example mapping with the date transformed using the DateTransform function:

class User: MapperProtocol {

    var username: String?
    var age: Int?
    var weight: Double?
    var arr: [AnyObject]?
    var dict: [String : AnyObject] = [:]
    var friend: User?                       // Nested User object
    var birthday: NSDate?

    required init(){}

    // MapperProtocol    
    func map(mapper: Mapper) {
        username < = mapper["username"]
        age <= mapper["age"]
        weight <= mapper["weight"]
        arr <= mapper["arr"]
        dict <= mapper["dict"]
        friend <= mapper["friend"]
        birthday <= (mapper["birthday"], DateTransform())
    }
}

Once the class is set up you can then map your JSON to/from the object using a single line of code.

You can find ObjectMapper on Github here.