文件ViewController.m中【使用TouchJSon解析方法:(需導入包:#import "TouchJson/JSON/CJSONDeserializer.h"),而且在非ARC環境下】php
//獲取網絡接口ios
NSURL *url=[NSURL URLWithString:@"http://1.studyios.sinaapp.com/getAllClass.php"];json
//定義一個NSError對象,用於捕捉錯誤信息網絡
__autoreleasing static NSError *err;session
//建立網絡請求命令app
NSURLRequest *request=[NSURLRequest requestWithURL:url];url
//建立會話對象,經過單例方法實現對象
NSURLSession *session=[NSURLSession sharedSession];接口
//執行會話的任務,經過 request 請求,獲取data對象ci
NSURLSessionDataTask *task=[session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
//由於此json數據最外層是集合,因此初始化一個集合用於接收解析後的數據
self.arrJson=[NSMutableArray array];
//TouchJson解析,解析後的數據放入集合self.arrJson中
self.arrJson=[[CJSONDeserializer deserializer]deserialize:data error:&err];
//便利集合 self.arrJson
for (int i=0; i<self.arrJson.count; i++) {
NSMutableDictionary *tempDic=self.arrJson[i];
NSLog(@"name = %@, id = %@, pwd = %@",tempDic[@"cname"],tempDic[@"cid"],tempDic[@"cpwd"]);
}
}];
//真正開始執行任務
[task resume];