Skip to content
/ APIKit Public
forked from ishkawa/APIKit

A networking library for building type safe web API client in Swift.

License

Notifications You must be signed in to change notification settings

yimajo/APIKit

 
 

Repository files navigation

APIKit

Build Status codecov Carthage compatible Version Platform

APIKit is a type-safe networking abstraction layer that associates request type with response type.

let request = SearchRepositoriesRequest(query: "APIKit", sort: .Stars)

Session.sendRequest(request) { result in
    switch result {
    case .Success(let repositories):
        // Type of `repositories` is `[Repository]`,
        // which is inferred from `SearchRepositoriesRequest`.
        print(repositories)

    case .Failure(let error):
        print(error)
    }
}

Requirements

  • Swift 2.2, 2.3
  • iOS 8.0 or later
  • Mac OS 10.10 or later
  • watchOS 2.0 or later
  • tvOS 9.0 or later

Installation

  • Insert github "ishkawa/APIKit" ~> 2.0 to your Cartfile.
  • Run carthage update.
  • Link your app with APIKit.framework and Result.framework in Carthage/Checkouts.
  • Insert pod 'APIKit', '~> 2.0' to your Podfile.
  • Run pod install.

Documentation

Advanced Guides

Migration Guides

About

A networking library for building type safe web API client in Swift.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 97.8%
  • Ruby 1.8%
  • Objective-C 0.4%