We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 717af7e commit b459e0aCopy full SHA for b459e0a
1 file changed
README.md
@@ -1,2 +1,19 @@
1
-Alamofire-SwiftyJSON
2
-===================
+#Alamofire-SwiftyJSON
+
3
+Easy way to use both [Alamofire](https://github.com/Alamofire/Alamofire) and [SwiftyJSON](https://github.com/SwiftyJSON/SwiftyJSON)
4
5
+## Requirements
6
7
+- iOS 7.0+ / Mac OS X 10.9+
8
+- Xcode 6.0
9
10
+## Usage
11
12
+```swift
13
+Alamofire.request(.GET, "http://httpbin.org/get", parameters: ["foo": "bar"])
14
+ .responseSwiftyJSON { (request, response, json, error) in
15
+ println(json)
16
+ println(error)
17
+ }
18
19
+```
0 commit comments