SVHTTPRequest
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: OS X
- 软件首页: https://github.com/samvermette/SVHTTPRequest
- 软件文档: https://github.com/samvermette/SVHTTPRequest
软件介绍
SVHTTPRequest 是用于 iOS 和 Mac 上的一个简单的 REST 客户端开发包。
示例代码:
[SVHTTPRequest GET:@"https://api.github.com/repos/samvermette/SVHTTPRequest"
parameters:nil
completion:^(id response, NSHTTPURLResponse *urlResponse, NSError *error) {
watchersLabel.text = [NSString stringWithFormat:@"SVHTTPRequest has %@ watchers", [response valueForKey:@"watchers"]];
}];
