#Alamofire-SwiftyJSON
Easy way to use both Alamofire and SwiftyJSON
- iOS 8.0+ / Mac OS X 10.9+
- Xcode 7.0
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire-SwiftyJSON'
Alamofire.request(.GET, "http://httpbin.org/get", parameters: ["foo": "bar"])
.responseSwiftyJSON({ (request, response, json, error) in
println(json)
println(error)
})