CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Yosuke Ishikawa.
ISNetwork/
ISNetwork objects.
ISNetworkTests/
unit test objects.
DemoApp/
objects for sample application.
ISNetwork/ and NSDictionary-URLQuery/ to your xcode project.#import "ISNetwork.h"NSURL *URL = [NSURL URLWithString:@"http://www.github.com"];
NSURLRequest *reqeust = [NSURLRequest requestWithURL:URL];[ISNetworkClient sendRequest:request
handler:^(NSHTTPURLResponse *response, id object, NSError *error) {
if (error || response.statusCode != 200) {
// error
return;
}
// completion
}];use previous version.