就在不長也不短的時間前,蘋果正式命令咱們要向NSURLSession看,因此我們不得不認認真真的聽從老大的教導,努力認知NSURLSession。其實呢,三方早已為我們解決了問題,但是呢,我們還是有必要大概瞭解一下NSURLSession。下麵呢,我就為大家簡單介紹NSURLSession。 *下麵
就在不長也不短的時間前,蘋果正式命令咱們要向NSURLSession看,因此我們不得不認認真真的聽從老大的教導,努力認知NSURLSession。其實呢,三方早已為我們解決了問題,但是呢,我們還是有必要大概瞭解一下NSURLSession。下麵呢,我就為大家簡單介紹NSURLSession。
*下麵是一位大牛寫過的一段話,在此獻上*
NSURLConnection在開發中會使用的越來越少,iOS9已經將NSURLConnection廢棄,現在最低版本一般適配iOS,所以也可以使用。NSURLConnection上傳圖片,可以自己找資料。
NSURLConnection相對於NSURLSession,安全性低。NSURLConnection下載有峰值,比較麻煩處理。
儘管適配最低版本iOS7,也可以使用NSURLSession。AFN已經不支持NSURLConnection。
NSURLSession:會話。預設是掛起狀態,如果要請求網路,需要開啟。
[NSURLSession sharedSession] 獲取全局的NSURLSession對象。在iPhone的所有app共用一個全局session.
NSURLSessionUploadTask -> NSURLSessionDataTask -> NSURLSessionTask
NSURLSessionDownloadTask -> NSURLSessionTask
NSURLSessionDownloadTask下載,預設下載到tmp文件夾。下載完成後刪除臨時文件。所以我們要在刪除文件之前,將它移動到Cache里。
下載 測試
// // ViewController.m // CX-NSURLSession簡介 // // Created by ma c on 16/3/21. // Copyright © 2016年 xubaoaichiyu. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } //這是為了測試而建立的點擊屏幕事件。 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ //下載 測試 NSURL * url = [NSURL URLWithString:[@"http://localhost/tupian.jpg" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSURLRequest * request = [NSURLRequest requestWithURL:url]; NSURLSession * session = [NSURLSession sharedSession]; NSURLSessionDownloadTask * task = [session downloadTaskWithRequest:request completionHandler:^(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error) { NSLog(@"下載完成"); //response.suggestedFilename 響應信息中的資源文件名 NSString * cacheParh = [[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject]stringByAppendingString:response.suggestedFilename]; NSLog(@"緩存地址%@",cacheParh); //獲取文件管理器 NSFileManager * manager = [NSFileManager defaultManager]; //將臨時文件移動到緩存目錄下 //[NSURL fileURLWithPath:cachesPath] 將本地路徑轉化為URL類型 //URL如果地址不正確,生成的url對象為空 [manager moveItemAtURL:location toURL:[NSURL fileURLWithPath:cacheParh] error:NULL]; }]; //開啟任務 [task resume]; } @end
GET 測試 一
// // ViewController.m // CX-NSURLSession簡介 // // Created by ma c on 16/3/21. // Copyright © 2016年 xubaoaichiyu. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } //這是為了測試而建立的點擊屏幕事件。 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ //get測試一 //創建URL NSURL * url = [NSURL URLWithString:@"http://localhost/login.php?username=haha&password=123"]; //創建 NSURLSession NSURLSession * session = [NSURLSession sharedSession]; //創建任務 NSURLSessionDataTask * task = [session dataTaskWithURL:url completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]); }]; //開啟任務 [task resume]; } @end
GET 測試 二
// // ViewController.m // CX-NSURLSession簡介 // // Created by ma c on 16/3/21. // Copyright © 2016年 xubaoaichiyu. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } //這是為了測試而建立的點擊屏幕事件。 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ //get測試二 //創建URL NSURL * url = [NSURL URLWithString:@"http://localhost/login.php?username=haha&password=123"]; //創建請求 NSURLRequest * request = [NSURLRequest requestWithURL:url]; //創建 NSURLSession NSURLSession * session = [NSURLSession sharedSession]; //創建任務 NSURLSessionDataTask * task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]); }]; //開啟任務 [task resume]; } @end
POST 測試
// // ViewController.m // CX-NSURLSession簡介 // // Created by ma c on 16/3/21. // Copyright © 2016年 xubaoaichiyu. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } //這是為了測試而建立的點擊屏幕事件。 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ //post 測試 //創建URL NSURL * url = [NSURL URLWithString:@"http://localhost/login.php"]; //創建請求 NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:url]; request.HTTPMethod = @"POST"; request.HTTPBody = [@"username=haha&password=123" dataUsingEncoding:NSUTF8StringEncoding]; //創建 NSURLSession NSURLSession * session = [NSURLSession sharedSession]; //創建任務 NSURLSessionDataTask * task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]); }]; //開啟任務 [task resume]; } @end