iOS AFNetworking(网络框架)
AFNetworking NSURLConnection ---导入头文件"AFHTTPRequestOperationManager.h" 1. 发送GET请求 //发送get请求 - (void)get { [[AFHTTPRequestOperationManager manager] GET:@"http://127.0.0.1/demo.json" parameters:nil success:^(AFHTTPRequestOperation * _Nonnull operation, id _Nonnull responseObject) { NSLog(@"%@",responseObject); NSLog(@"%@",[responseObject class]); } failure:^(AFHTTPRequestOperation * _Nullable operation, NSError * _Nonnull error) { NSLog(@"%@",error); }]; } 2. 发送GET请求--带参数 //发送get请求,传参数 - (void)get...