Alamofire-Decodable 3.0.0

Alamofire-Decodable 3.0.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Mar 2018
SPMSupports SPM

Maintained by Sam Dean.



 
Depends on:
Alamofire~> 4.0
Decodable~> 0.6.0
 

Alamofire-Decodable

CI Status Version License Platform

Brief

A simple pod to connect Decodable to Alamofire.

Assuming you have a decodable struct called Post (check out Post.swift in the example project), then you can just use responseDecodable to return you one (or a list) of them, like this:

Alamofire.request("https://jsonplaceholder.typicode.com/posts/1").responseDecodable { (response: DataResponse<Post>) in
    switch response.result {
    case .success(let post):
        print("Recieved post: \(post)")

    case .failure(let error):
        print("Failed with error: \(error)")
    }
}

Requirements

Alamofire-Decodable requires iOS 9.0, Swift 3 and Xcode 8.

Example Project

To run the example project, clone the repo and run the project in the Example folder.

Installation

Alamofire-Decodable is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Alamofire-Decodable"

Author

Sam Dean, [email protected]

License

Alamofire-Decodable is available under the MIT license. See the LICENSE file for more info.