object-c http-get-post

Posted manhelp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了object-c http-get-post相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

object-c中的BOOL类型

Atitit. Object-c语言 的新的特性  attilax总结

[object-c 2.0 程序设计]object-c file handle

Object-c 类对象方法

Object-C Dealloc

Object-C类目(Category)