SVHTTPRequest简单的 REST 客户端开发包
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"]];
        }];评论
