An open API service indexing awesome lists of open source software.

https://github.com/badchoice/rvhttp

Dead simple HTTP requests for objective-c / swift
https://github.com/badchoice/rvhttp

Last synced: about 1 year ago
JSON representation

Dead simple HTTP requests for objective-c / swift

Awesome Lists containing this project

README

          

# RVHttp

#### Super easy HTTP

```
[RVHttp get:@"https://httpbin.org/get" params:@{@"name" : @"Jordi"} headers:@{@"Custom-Header": @"header-value"} completion:^(RVHttpResponse *response) {

NSDictionary* responseDict = response.toDictionary;

}];
```