Skip to content

DalterioRaffaele/TestConnectionManager

Repository files navigation

TestConnectionManager

TestConnectionManager is a simple HTTP client for Swift.

var testConnectionManager = TestConnectionManager()

testConnectionManager.get("https://it.wikipedia.org/wiki/Hypertext_Transfer_Protocol", callback: {err, response, body in
  if( err == nil ) {
    print(body)
  }
})

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

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

pod 'TestConnectionManager'

Author

DalterioRaffaele, r.dalterio@almaviva.it

License

TestConnectionManager is available under the MIT license. See the LICENSE file for more info.