Skip to content

Commit b459e0a

Browse files
committed
Update README.md
1 parent 717af7e commit b459e0a

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1-
Alamofire-SwiftyJSON
2-
===================
1+
#Alamofire-SwiftyJSON
2+
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

Comments
 (0)