iOS网络post请求

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

   //  post请求(代理方式)  

//    NSURL * url = [NSURL URLWithString:@"http://192.168.2.162/logo.php"];

//    

//    //通过URL建立请求对象

//    NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:url];

//    

//    //设置请求方式(默认的是get方式)

//    request.HTTPMethod = @"POST";//使用大写规范

//    

//    //设置请求参数

////    NSString * str = @"userName=jereh&pwd=123";

//    NSString * str = @"test2.rar";

//    request.HTTPBody = [str dataUsingEncoding:NSUTF8StringEncoding];

//    

//    //创建NSURLConnection 对象用来连接服务器并且发送请求

//    NSURLConnection * conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];

//    [conn start];

//    NSLog(@"%@", [NSThread currentThread]);

标签: 服务器

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:IOS网络请求,封装文件上传操作

下一篇:NSThread中cancle与exit的使用