mirror of
https://github.com/SwiftyJSON/Alamofire-SwiftyJSON.git
synced 2026-05-08 08:13:42 +08:00
475 B
475 B
#Alamofire-SwiftyJSON
Easy way to use both Alamofire and SwiftyJSON
Requirements
- iOS 7.0+ / Mac OS X 10.9+
- Xcode 6.0
Usage
Alamofire.request(.GET, "http://httpbin.org/get", parameters: ["foo": "bar"])
.responseSwiftyJSON { (request, response, json, error) in
println(json)
println(error)
}