iOS 的 HTTP 开发包:ILHTTPClient

jopen 11年前

ILHTTPClient 是一个非常简单的 AFNetworking 库的封装,还带有一个动画的 HUD 状态显示。

 iOS 的 HTTP 开发包:ILHTTPClient

[client getPath:path       parameters:params      loadingText:@"Loading"      successText:@"Completed!"          success:^(AFHTTPRequestOperation *operation, NSString *response)  {      id JSON = [response JSONValue]; //If JSON is returned      /* Do something with this data */  }          failure:^(AFHTTPRequestOperation *operation, NSError *error)  {      NSLog(@"Error: %@", error);      /* Handle the error here */  }];

项目主页:http://www.open-open.com/lib/view/home/1369123392779