WZXNetworking 1.0.1

WZXNetworking 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jun 2016

Maintained by Unclaimed.




Based on AFNetwoking, the network request framework using the chain programming idea.

Catalogue

Install

  • If you use CocoaPods

    1. pod search WZXNetworking
    2. Write to your Podfile.
    3. pod install
  • Else

    1. Download this and import it into your project.
    2. Download AFNetworking and import it into your project.

How to use

[[WZXNetworkManager manager].setRequest(@"http://192.168.1.40:8001")
.RequestType(POST).HTTPHeader(nil).Parameters(nil)
.RequestSerialize(RequestSerializerHTTP).ResponseSerialize(ResponseSerializerJSON).FormData(formData) startRequestWithProgress:^(NSProgress *progress) {
        NSLog(@"%f",progress.fractionCompleted);
    } success:^(id response) {
        NSLog(@"success");
    } failure:^{
        NSLog(@"failure");
    }];

Update log

Issues

Issues

Contact me

If you have suggestions to welcome email to [email protected].