Skip to content

nanojaus/LvHttpClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

LvHttpClient

A lightweight iOS HTTP Client framework.

LvHttpClient *httpClient = [[LvHttpClient alloc]initWithBaseURL:[NSURL URLWithString:@"http://test.com/api/"]];
httpClient.jsonCompatible = TRUE;
[httpClient getMethod:@"/apple" withParams:@{@"appleId": @"1"} response:^(id object, NSError *error) {
    if (!error) {
        NSLog(@"Response: %@", object);
    }
}];

About

A lightweight iOS HTTP Client framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published