码迷,mamicode.com
首页 > Web开发 > 详细

object-c http-get-post

时间:2019-11-23 17:55:16      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:sha   handler   use   data   host   get请求   nsdata   amp   com   

get请求

//得到session对象
NSURLSession *session = [NSURLSession sharedSession];

NSURL *url = [NSURL URLWithString:@"http://localhost:80/video"];

//创建一个任务
NSURLSessionDataTask *task = [session dataTaskWithURL:url completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSLog(@"----%d", data.length);
}];

//开始任务
[task resume];

post请求

//创建session对象
NSURLSession *session = [NSURLSession sharedSession];

NSURL *url = [NSURL URLWithString:@"http://localhost:80/login"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

//设置request
request.HTTPMethod = @"post";
request.HTTPBody = [@"username=123&pwd=123" dataUsingEncoding:NSUTF8StringEncoding];

//创建任务
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSLog(@"------%d", data.length);
}];

//开始任务
[task resume];

object-c http-get-post

标签:sha   handler   use   data   host   get请求   nsdata   amp   com   

原文地址:https://www.cnblogs.com/manhelp/p/11918731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!