NSURLConnection的使用

来源:http://www.cnblogs.com/dongfangchun/archive/2016/03/16/5285176.html
-Advertisement-
Play Games

一:NSURLConnection(IOS9.0已經棄用)是早期apple提供的http訪問方式。以下列出了常用的幾個場景:GET請求,POST請求,Response中帶有json數據 對於NSURLConnection有以下註意事項:(1)sendAsynchronourequest: queue


一:NSURLConnection(IOS9.0已經棄用)是早期apple提供的http訪問方式。以下列出了常用的幾個場景:GET請求,POST請求,Response中帶有json數據

      對於NSURLConnection有以下註意事項:(1)sendAsynchronourequest: queue: completionHandler:函數中的queue參數表示的是“handler 這個block運行在queue中,如果queue為mainThread,那麼hanlder就運行在主線程;所以在處理UI的時候需要註意這個參數”

(1)Get請求(返迴文本)

  //Request
    NSMutableURLRequest *urlRequest = [NSMutableURLRequest new]; 
    [urlRequest setURL:[NSURL URLWithString:@"http://XXX.sinaapp.com/test/test.php?namr&id=43"]];
    [urlRequest setTimeoutInterval:10.0f];
    [urlRequest setHTTPMethod:@"GET"];
    [urlRequest setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];

    NSOperationQueue *queue = [[NSOperationQueue alloc]init];
    [NSURLConnection sendAsynchronousRequest:urlRequest
                                       queue:queue
                           completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
    
    //根據回覆Headers,確認是是否為NSHTTPURLResponse的對象    if([response isKindOfClass:[NSHTTPURLResponse class]]){    NSHTTPURLResponse *resHttp = (NSHTTPURLResponse *)response;    NSLog(@"status = %ld",resHttp.statusCode);//200 304 401......    NSDictionary *dicHeader = resHttp.allHeaderFields;   NSLog(@"headers = %@",dicHeader);    }    else{    NSLog(@"not http");   }
  
if(data){    NSString *html = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];    NSLog(@"%@",html);    } }];

 

  (2)POST請求(返迴文本)
    //Request

    NSMutableURLRequest *urlRequest = [NSMutableURLRequest new];

    [urlRequest setURL:[NSURL URLWithString:@"http://XXX.sinaapp.com/test/test.php"]];
    [urlRequest setTimeoutInterval:10.0f];
    [urlRequest setHTTPMethod:@"POST"];
    [urlRequest setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];
    NSString *strBody = @"p1=abc&p2=12";
    [urlRequest setHTTPBody:[strBody dataUsingEncoding:NSUTF8StringEncoding]];

    NSOperationQueue *queue = [[NSOperationQueue alloc]init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:
^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) { //確認是http if([response isKindOfClass:[NSHTTPURLResponse class]]){ NSHTTPURLResponse *resHttp = (NSHTTPURLResponse *)response; NSLog(@"status = %ld",resHttp.statusCode);//200 304 401...... NSDictionary *dicHeader = resHttp.allHeaderFields; NSLog(@"headers = %@",dicHeader); } else{ NSLog(@"not http"); } if(data){ NSString *html = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"%@",html); } }];

 

    

(3)Response中有Json數據
    //Request

    NSMutableURLRequest *urlRequest = [NSMutableURLRequest new];

    [urlRequest setURL:[NSURL URLWithString:@"http://XXX.sinaapp.com/test/test.php"]];
    [urlRequest setTimeoutInterval:10.0f];
    [urlRequest setHTTPMethod:@"POST"];
    [urlRequest setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];
    NSString *strBody = @"p1=abc&p2=12";
    [urlRequest setHTTPBody:[strBody dataUsingEncoding:NSUTF8StringEncoding]];

    NSOperationQueue *queue = [[NSOperationQueue alloc]init];

    [NSURLConnection
     sendAsynchronousRequest:urlRequest
     queue:queue
     completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
         NSError *err2 = nil;
         id jsonObject = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&err2];

         if([jsonObject isKindOfClass:[NSDictionary class]]){
             NSLog(@"NSDictionary");
             NSDictionary *dic = jsonObject;
             NSLog(@"dic = %@",dic);
         }
         else if([jsonObject isKindOfClass:[NSArray class]]){
             NSLog(@"NSDictionary");
             NSDictionary *arr = jsonObject;
             NSLog(@"arr = %@",arr);
         }
     }];

 

(4)Request中帶有Json格式數據

    //Request
    NSMutableURLRequest *urlRequest = [NSMutableURLRequest new];
    [urlRequest setURL:[NSURL URLWithString:@"http://XXXX.sinaapp.com/test/test.php"]];
    [urlRequest setTimeoutInterval:10.0f];
    [urlRequest setHTTPMethod:@"POST"];
    [urlRequest setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];
    [urlRequest setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];//這句沒有也沒關係
    
    NSDictionary *dicRequest = @{@"name":@"leo",
                                 @"id":@"456"};
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dicRequest options:NSJSONWritingPrettyPrinted error:nil];
    [urlRequest setHTTPBody:jsonData];
    
    NSOperationQueue *queue = [[NSOperationQueue alloc]init];
    
    [NSURLConnection
     sendAsynchronousRequest:urlRequest
     queue:queue
     completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {

         NSError *err2 = nil;
         id jsonObject = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&err2];
         
         if([jsonObject isKindOfClass:[NSDictionary class]]){
             NSLog(@"NSDictionary");
             NSDictionary *dic = jsonObject;
             NSLog(@"dic = %@",dic);
         }
         else if([jsonObject isKindOfClass:[NSArray class]]){
             NSLog(@"NSDictionary");
             NSDictionary *arr = jsonObject;
             NSLog(@"arr = %@",arr);
         }

     }];

  

 伺服器端的處理與返回(將request的值末尾加上_appending,然後返回)

<?php
	header('Access-Control-Allow-Origin:*');
	$json_string = $GLOBALS['HTTP_RAW_POST_DATA'];
	$obj = json_decode($json_string);
	//echo $obj->name;
	//echo $obj->id;
	$arr = array(
        "name"=>$obj->name."_appending",
        "id"=>$obj->id."_appending");
	echo json_encode($arr);

  

(5)從伺服器下載圖片(啟示就是普通的GET請求,只是將response中的data轉為Image而已)

 //Request
    NSMutableURLRequest *urlRequest = [NSMutableURLRequest new];
    [urlRequest setURL:[NSURL URLWithString:@"https://res.wx.qq.com/mpres/htmledition/images/pic/case-detail/nfhk_l23b6fe.jpg"]];
    [urlRequest setTimeoutInterval:10.0f];
    [urlRequest setHTTPMethod:@"GET"];
    [urlRequest setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];
    
    [NSURLConnection
     sendAsynchronousRequest:urlRequest
     queue:[NSOperationQueue mainQueue]
     completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
         UIImage *img = [UIImage imageWithData:data];
         [self.imgView setImage:img];
     }];
    

 

(6)以上所有動作都可以使用代理來做,原理上都是一樣的

      NSURLConnectionDataDelegate,

      NSURLConnectionDelegate,

      NSURLConnectionDownloadDelegate

 

 

 

 

 

 

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 轉自holydancer的CSDN專欄,原文地址:http://blog.csdn.net/holydancer/article/details/9219333 概述: 蘋果的證書繁鎖複雜,製作管理相當麻煩,今天決定重置一個游戲項目中的所有證書,做了這麼多次還是感覺很糾結,索性直接記錄下來,日後你我
  • 這種問題,通常出現在添加第三方庫文件或者多人開發時。 這種問題一般是找不到文件而導致的鏈接錯誤。 我們可以從如下幾個方面著手排查。 1.以如下錯誤為例,如果是多人開發,你同步完成後發現出現如下的錯誤。 錯誤中出現了“MyPageLogViewController”這個類,你可以找到這個類的.m文件,
  • } ———————————————————————————————————————————— 為什麼要在調用父類setFrame之前改那個y值呢? ———————————————————————————————————————————— 最好在layoutSubViews裡面設置子控制項的frame,
  • 硬體:macbook air 系統:OSX EI Capitan 版本:10.11.3 xcode : Version 7.2.1 (7C1002) 最近在做ios的靜態庫(據說framework動態庫不能上傳到app store).a 和framework都做過了,這裡就先說framework的制
  • 單機搭建Android開發環境五,基於Android Studio搭建應用開發環境。
  • 背景:最近在把自己之前寫的一個應用換成Material Design風格,在看官方Guide後動手試了一試,沒想到出門就遇到了坑,在換成Material Design風格的主題後,我設置了一下colorPrimary,colorPrimaryDark(MD風格對應於android:statusBar
  • 數組 一.認識數組 oc中可以把NSObject對象的子類放到數組這個集合中,但是int、float、double等基礎數據類型需要先進行轉換才可以存入數組。 oc中數組以NS開頭,其中分為可變數組和不可變數組; 1.不可變數組(NSArray) 數組在創建的時候被初始化之後,不可以再次進行增、刪、
  • ios如何獲取圖片(二)無沙盒下 解決問題 解決問題1:tableView滑動卡頓,圖片延時載入 解決方法:添加非同步請求,在子線程里請求網路,在主線程刷新UI 解決問題2:反覆請求網路圖片,增加用戶流量消耗 解決方法:創建了downloadImage,downloadImage屬於數據源,當tabl
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...