標籤:
通過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檔案
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 @end15 16 @implementation ViewController17 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 *)response37 {38 self.receiveData = [NSMutableData data];39 }40 41 // 7.添加一個代理方法,當接收到網路資料時,執行這個方法42 -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data43 {44 self.receiveData = data;45 }46 47 // 8.添加一個代理方法,當網路連接的一系列動作結束後執行這個方法。48 -(void)connectionDidFinishLoading:(NSURLConnection *)connection49 {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 *)error57 {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
執行之後就可以根據指定網址擷取資料了。
iOS 網路與多線程--3.非同步Get方式的網路請求(非阻塞)