Popularity
2.1
Stable
Activity
0.0
Stable
65
5
13

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: Networking    
Latest version: v3.0

UnboxedAlamofire alternatives and similar libraries

Based on the "Networking" category.
Alternatively, view UnboxedAlamofire alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of UnboxedAlamofire or a related project?

Add another 'Networking' Library

README

UnboxedAlamofire

Build Status CocoaPods Compatible Carthage Compatible Platform

Alamofire + Unbox: the easiest way to download and decode JSON into swift objects.

Features

  • [x] Unit tested
  • [x] Fully documented
  • [x] Mapping response to objects
  • [x] Mapping response to array of objects
  • [x] Keypaths
  • [x] Nested keypaths
  • [x] For Swift 2.x use v. 1.x and swift2 branch
  • [x] For Swift 3.x use v. 2.x

Usage

Objects you request have to conform Unboxable protocol.

Get an object

Alamofire.request(url, method: .get).responseObject { (response: DataResponse<Candy>) in
    // handle response
    let candy = response.result.value

    // handle error
    if let error = response.result.error as? UnboxedAlamofireError {
        print("error: \(error.description)")
    }
}

Get an array

Alamofire.request(url, method: .get).responseArray { (response: DataResponse<[Candy]>) in
    // handle response
    let candies = response.result.value

    // handle error
    if let error = response.result.error as? UnboxedAlamofireError {
        print("error: \(error.description)")
    }
}

KeyPath

Also you can specify a keypath in both requests:

Alamofire.request(url, method: .get).responseObject(keyPath: "response") { (response: DataResponse<Candy>) in
    // handle response
    let candy = response.result.value

    // handle error
    if let error = response.result.error as? UnboxedAlamofireError {
        print("error: \(error.description)")
    }
}

Installation

CocoaPods

pod 'UnboxedAlamofire', '~> 2.0'

Carthage

github "serejahh/UnboxedAlamofire" ~> 2.0