CocoaPods trunk is moving to be read-only. Read more on the blog, there are 9 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Susim Samanta.
SSRestClient is a resuable IOS components for network call to ease task of differnt type REST based network call.
SSRestClient is a lightweight resuable component using Objective C language and NSURLConnection class:
2.0.0
Sample service call
-(void)demoServiceCall { SSRestManager *restManager = [[SSRestManager alloc] init]; NSString *baseUrlString = @"http://itunes.apple.com"; NSString *queryString = @"/us/rss/topfreeapplications/limit=100/json"; [restManager getJsonResponseFromBaseUrl:baseUrlString query:queryString onCompletion:^(NSDictionary *json) {
NSLog(@"%@",json); } onError:^(NSError *error) { NSLog(@"%@",error); }];
}
NONE