AFNetworking 3.1

来源:http://www.cnblogs.com/xiaoliao/archive/2016/08/06/5744906.html
-Advertisement-
Play Games

聽說之後AFHttpWorking版本可能會影響到蘋果的審核,今天下了最新版本的AFHttpWorking,並且做了簡單的封裝,我這裡是通過cocoapods下載了兩個工具 1=AFHttpWorking 2=JSONKit 為什麼要下jsonkit勒,以前json解析都使用touchjson,偶然 ...


聽說之後AFHttpWorking版本可能會影響到蘋果的審核,今天下了最新版本的AFHttpWorking,並且做了簡單的封裝,我這裡是通過cocoapods下載了兩個工具

1=AFHttpWorking  2=JSONKit  為什麼要下jsonkit勒,以前json解析都使用touchjson,偶然發現資料說jsonkit效率是第三方json解析中最高的,所以今天把它也下了來下,我這裡只做了AFHttpWorking 的get/post/網路判斷三個方法。下麵我貼代碼

 

.h文件

 

#import <Foundation/Foundation.h>
#import "AFDataDefine.h"
#import <AFNetworking/AFNetworking.h>
static NSString* const  kAFAppDotNetAPIBaseURLString=@"http://www.xx.com";
@interface APIClient : AFHTTPSessionManager
+ (APIClient *)sharedClient;
-(void)getUrl:(NSString *)URLString parameters:(id)parameters call:(void (^)( RespInfo* info))callback;
-(void)postUrl:(NSString *)URLString parameters:(id)parameters call:(void (^)( RespInfo* info))callback;
-(void)checkNetWorkingIsOrNoUse:  (void (^)(  int  StateOrType))callback;
@end

 

 .m文件

#import "APIClient.h"
#import <JSONKit/JSONKit.h>


#pragma mark -

@implementation APIClient
+ (instancetype)sharedClient {
    static APIClient *_sharedClient = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _sharedClient = [[APIClient alloc] initWithBaseURL:[NSURL URLWithString:kAFAppDotNetAPIBaseURLString]];
        _sharedClient.securityPolicy = [AFSecurityPolicy policyWithPinningMode:AFSSLPinningModeCertificate];
         _sharedClient.requestSerializer.timeoutInterval =20;
        
    });
  
      _sharedClient.responseSerializer.acceptableContentTypes =  [NSSet setWithObjects:@"text/html",@"text/plain",@"charset=UTF-8",@"Content-Type",@"application/json",nil];;
    
    return _sharedClient;
}



#pragma mark -


/**
 *  網路監測(在什麼網路狀態)
 *
 *  @callback 1          未知網路
 *  @callback 2        無網路
 *  @callback 3 蜂窩數據網
 *  @callback 4 WiFi網路
 */

-(void)checkNetWorkingIsOrNoUse:  (void (^)(  int  StateOrType))callback
{
    // 創建網路監測者
   
    [ [AFNetworkReachabilityManager sharedManager]  setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) {
      switch (status)
        {
            case AFNetworkReachabilityStatusUnknown:
                callback(1);
                break;
                
            case AFNetworkReachabilityStatusNotReachable:
                   callback(2);
                break;
                
            case AFNetworkReachabilityStatusReachableViaWWAN:
                   callback(3);
                
                break;
            case AFNetworkReachabilityStatusReachableViaWiFi:
                   callback(4);
                break;
                
            default:
                
                break;
        }
    }] ;
    
    [[AFNetworkReachabilityManager sharedManager]  startMonitoring];

}


-(void)postUrl:(NSString *)URLString parameters:(id)parameters call:(void (^)( RespInfo* info))callback
{
    
    //首先判斷是否有網路
   [self checkNetWorkingIsOrNoUse:^(int StateOrType) {
       if (StateOrType==2) {
           
           
             RespInfo* retobj = [[RespInfo alloc]init];
             retobj.mBSuccess=NO;
             NSString *AlertInfo=@"請檢查網路是否暢通。";
             retobj.mMsg=AlertInfo;
             callback(retobj);
       
       
       }
    
       else
       {
           
           
          [self POST:URLString parameters:parameters progress:^(NSProgress * _Nonnull uploadProgress) {
               [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES]; // 開啟狀態欄動畫
               
               
               
           } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
               NSString *JsonStr=[responseObject JSONString];
               NSDictionary *MyDic=[JsonStr objectFromJSONString];
               //申明block返回的累
               RespInfo* retobj = [[RespInfo alloc]init];
               //判斷返回是否成功
               NSString *IsOrNoSuccess=[MyDic objectForKey:@"Success"];
               if ([IsOrNoSuccess intValue]==1) {
                   retobj.mBSuccess=YES;
                   //這裡判斷返回類型,如果為0不去取mObject的值,否則要取
                   int JudgeInt=[[MyDic objectForKey:@"ControlType"]intValue];
                   if (JudgeInt==0) {//只取列表值
                       
                       NSString *DataListArrayStr=[MyDic objectForKey:@"Rows"];
                       retobj.listData=[DataListArrayStr objectFromJSONString];
                       
                   }
                   else if(JudgeInt==1)//字取附加字典值
                   {
                       NSString *addicationDic=[MyDic objectForKey:@"AddicationDictionary"];
                       retobj.mObjectDictionary=[addicationDic objectFromJSONString];
                   }
                   else if(JudgeInt==2)//兩個都取
                   {
                       
                       NSString *DataListArrayStr=[MyDic objectForKey:@"Rows"];
                       retobj.listData=[DataListArrayStr objectFromJSONString];
                       
                       NSString *addicationDic=[MyDic objectForKey:@"AddicationDictionary"];
                       retobj.mObjectDictionary=[addicationDic objectFromJSONString];
                   }
                   //返回的公用提示消息
                   NSString *AlertInfo=[MyDic objectForKey:@"Msg"];
                   retobj.mMsg=AlertInfo;
                   
               }
               else
               {
                   
                   retobj.mBSuccess=NO;
                   
                   NSString *AlertInfo=[MyDic objectForKey:@"Msg"];
                   retobj.mMsg=AlertInfo;
                   
               }
               
               callback(retobj);
               
               
               
               
           } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
               
               RespInfo* retobj = [[RespInfo alloc]init];
               retobj.mBSuccess=NO;
               
               retobj.mMsg=error.domain;
               
           }];

         
       }
   }];
    
    
}


-(void)getUrl:(NSString *)URLString parameters:(id)parameters call:(void (^)(  RespInfo* info))callback
{
    //首先判斷是否有網路
      [self checkNetWorkingIsOrNoUse:^(int StateOrType) {
        if (StateOrType==2) {
            
            
            RespInfo* retobj = [[RespInfo alloc]init];
            retobj.mBSuccess=NO;
            NSString *AlertInfo=@"請檢查網路是否暢通。";
            retobj.mMsg=AlertInfo;
            callback(retobj);
            
            
        }
        
        else
        {
            
            
            [self GET:URLString parameters:parameters progress:^(NSProgress * _Nonnull downloadProgress) {
                [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES]; // 開啟狀態欄動畫
                
             } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
                 
                     [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
                 
                 
                NSString *JsonStr=[responseObject JSONString];
                NSDictionary *MyDic=[JsonStr objectFromJSONString];
                //申明block返回的累
                RespInfo* retobj = [[RespInfo alloc]init];
                //判斷返回是否成功
                NSString *IsOrNoSuccess=[MyDic objectForKey:@"Success"];
                if ([IsOrNoSuccess intValue]==1) {
                    retobj.mBSuccess=YES;
                    //這裡判斷返回類型,如果為0不去取mObject的值,否則要取
                    int JudgeInt=[[MyDic objectForKey:@"ControlType"]intValue];
                    if (JudgeInt==0) {//只取列表值
                        
                        NSString *DataListArrayStr=[MyDic objectForKey:@"Rows"];
                        retobj.listData=[DataListArrayStr objectFromJSONString];
                        
                    }
                    else if(JudgeInt==1)//字取附加字典值
                    {
                        NSString *addicationDic=[MyDic objectForKey:@"AddicationDictionary"];
                        retobj.mObjectDictionary=[addicationDic objectFromJSONString];
                    }
                    else if(JudgeInt==2)//兩個都取
                    {
                        
                        NSString *DataListArrayStr=[MyDic objectForKey:@"Rows"];
                        retobj.listData=[DataListArrayStr objectFromJSONString];
                        
                        NSString *addicationDic=[MyDic objectForKey:@"AddicationDictionary"];
                        retobj.mObjectDictionary=[addicationDic objectFromJSONString];
                    }
                    //返回的公用提示消息
                    NSString *AlertInfo=[MyDic objectForKey:@"Msg"];
                    retobj.mMsg=AlertInfo;
                    
                }
                else
                {
                    
                    retobj.mBSuccess=NO;
                    
                    NSString *AlertInfo=[MyDic objectForKey:@"Msg"];
                    retobj.mMsg=AlertInfo;
                    
                }
                
                callback(retobj);
              } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
                
                RespInfo* retobj = [[RespInfo alloc]init];
                retobj.mBSuccess=NO;
                
                retobj.mMsg=error.domain;
                
            }];
            
            
        }
    }];

    
    
}

//
 

@end

 block返回的類

 

#pragma mark - RespInfo  外層封裝數據
@interface RespInfo : AFDataDefine
@property (nonatomic,strong) NSArray                 *listData;         //列表數據
@property(nonatomic,strong)NSDictionary               *mObjectDictionary;//附帶字典
@property (nonatomic,strong) NSString*          mMsg;   //提示消息
@property (nonatomic,assign) BOOL               mBSuccess;    //返回狀態,成功失敗,判斷這個

+(RespInfo *)infoWithError:(NSError *)error;
+(RespInfo *)infoWithErrorMessage:(NSString *)errMsg;

@end

 

調用

 1 #import "ViewController.h"
 2 #import "APIClient.h"
 3 
 4 @interface ViewController ()
 5 
 6 @end
 7 
 8 @implementation ViewController
 9 
10 - (void)viewDidLoad {
11     [super viewDidLoad];
12     // Do any additional setup after loading the view, typically from a nib.
13     NSUUID *iD=[[NSUUID alloc]init];
14     NSString *UUIDvALUE=[iD UUIDString];
15     
16     
17     
18     
19     
20     NSDictionary *Dic=[[NSDictionary  alloc]initWithObjectsAndKeys:@"0",@"dataType", nil];
21     
22     [[APIClient sharedClient] getUrl:@"/Mobile/Jmfww.asmx/JmfwwCommunity" parameters:Dic call:^(RespInfo *info) {
23         if ([info mBSuccess]) {
24             
25             
26            
27             
28         }
29     }];
30     
31 }
32 
33 - (void)didReceiveMemoryWarning {
34     [super didReceiveMemoryWarning];
35     // Dispose of any resources that can be recreated.
36 }
37 
38 @end

 


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

-Advertisement-
Play Games
更多相關文章
  • Document 對象時通往DOM功能的入口,它向你提供了當前文檔的信息,以及一組可供探索、導航、搜索或操作結構與內容的功能。 我們通過全局變數document訪問Document對象,它是瀏覽器為我們創建的關鍵對象之一。Document對象提供了文檔的整體信息,並讓你能夠訪問模型里的各個對象。簡單 ...
  • AngularJs中的路由,應用比較廣泛,主要是允許我們通過不同的url訪問不同的內容,可實現多視圖的單頁web應用。下麵看看具體怎麼使用。 關於路由 通常我們的URL形式為http://jtjds.cn/first/page,但在單頁web應用中angularjs通過#+標記實現,比如下麵的頁面, ...
  • 部分轉載自:http://www.jb51.net/softjc/180873.html Sublime text 3是碼農最喜歡的代碼編輯器,每天和代碼打交道,必先利其器,掌握基本的代碼編輯器的快捷鍵,能讓你打碼更有效率。剛開始可能有些生疏,只要花一兩個星期堅持使用並熟悉這些常用的快捷鍵!其實su ...
  • HTML游標樣式 cursor:url('#');#為游標文件地址 (註意文件格式必須為:.cur或.ani) 用戶自定義(可用動畫) 註意:在定義完自定義的游標之後在末尾加上一般性的游標, 以防那些url所定義的游標不能使用 說明: cursor 屬性:設置顯示的游標的類型(形狀)。 此屬性的值可 ...
  • 人們對於this的綁定常常有兩個誤解,一:指向函數本身,二:指向函數作用域。這兩種想法都是錯的,this並不指向函數本身,也不指向函數作用域。 因為this不指向函數本身,所以foo.count的值依然是0。 因為this不指向函數作用域,所以輸出的是2。 this實際上是在函數被調用時發生的綁定, ...
  • rt,最近搞一個高清圖傳,本著自(bu)主(mai)創(da)新(jiang)的原則,打算利用手中的iPad當作輔助飛行屏幕,USB傳輸數據。再說某疆圖傳7999(還只支持自家雲台錄像拍照),哪是我這等小學生消費得起的??? 現在剛繞明白OFDM正交子載波序列,又被接收端移動設備繞進去了。本來只考慮 ...
  • 常用的設計模式(一)代理模式應用場景:當一個類的某些功能需要由別的類來實現,但是又不確定具體會是哪個類實現。優勢:解耦合敏捷原則:開放-封閉原則實例:tableview的 數據源delegate,通過和protocol的配合,完成委托訴求。列表row個數delegate自定義的delegate (二 ...
  • 電腦控制Android設備的軟體,Total Control。 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...