經過Get請求方式,異步獲取網絡數據,異步請求不會阻塞主線程(用戶界面不會卡死),而會創建一個新的線程。緩存
代碼以下網絡
ViewController.h文件異步
1 // 2 // ViewController.h 3 // AppDemo 4 // 5 // Created by JinXin on 15/12/2. 6 // Copyright © 2015年 xx. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 11 // 1.添加一個協議代理 12 @interface ViewController : UIViewController<NSURLConnectionDataDelegate> 13 14 // 2.添加一個屬性,用來接受網絡數據。 15 @property(nonatomic) NSData *receiveData; 16 17 @end
ViewController.m文件atom
1 // 2 // ViewController.m 3 // AppDemo 4 // 5 // Created by JinXin on 15/12/2. 6 // Copyright © 2015年 xx. All rights reserved. 7 // 8 9 #import "ViewController.h" 10 11 12 @interface ViewController () 13 14 @end 15 16 @implementation ViewController 17 18 - (void)viewDidLoad { 19 [super viewDidLoad]; 20 // Do any additional setup after loading the view, typically from a nib. 21 22 // 3.創建一個網址對象,指定請求數據的網址,本節調用Facebook的公用API,獲取某個FB用戶信息。 23 NSURL *url = [NSURL URLWithString:@"https://graph.facebook.com/Apple-Inc"]; 24 // 4.經過網址建立網絡請求對象, 25 // 參數1:請求訪問路徑 26 // 參數2:緩存協議 27 // 參數3:網絡請求超時時間 28 NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10]; 29 // 5.使用網絡對象實現網絡通信,網絡請求對象建立成功後,就建立來一個網絡鏈接。 30 NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self]; 31 32 33 } 34 35 // 6.添加一個代理方法,當接受到網絡反饋時,執行這個方法。 36 -(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response 37 { 38 self.receiveData = [NSMutableData data]; 39 } 40 41 // 7.添加一個代理方法,當接收到網絡數據時,執行這個方法 42 -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data 43 { 44 self.receiveData = data; 45 } 46 47 // 8.添加一個代理方法,當網絡鏈接的一系列動做結束後執行這個方法。 48 -(void)connectionDidFinishLoading:(NSURLConnection *)connection 49 { 50 // 將接受到的網絡數據,從二進制數據格式,轉換爲字符串格式,並輸出結果 51 NSString *receiveStr = [[NSString alloc]initWithData:self.receiveData encoding:NSUTF8StringEncoding ]; 52 NSLog(@">>>>>>>>>>>>>>>>%@",receiveStr); 53 } 54 55 // 9.添加一個代理方法,當網絡鏈接失敗執行這個方法 56 -(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error 57 { 58 NSLog(@">>>>>>>>>>>>>>>>%@",[error localizedDescription]); 59 } 60 61 - (void)didReceiveMemoryWarning { 62 [super didReceiveMemoryWarning]; 63 // Dispose of any resources that can be recreated. 64 } 65 66 67 68 @end
執行以後就能夠根據指定網址獲取數據了。url