iOS 網絡與多線程--5.異步Post方式的網絡請求(非阻塞)

經過Post請求方式,異步獲取網絡數據,異步請求不會阻塞主線程,而會創建一個新的線程來操做。緩存

代碼以下網絡

ViewController.h文件app

1 #import <UIKit/UIKit.h>
2 
3 // 1.添加網絡代理協議
4 @interface ViewController : UIViewController<NSURLConnectionDataDelegate>
5 
6 // 2.添加一個屬性,用來接受網絡數據。
7 @property(nonatomic) NSData *receiveData;
8 
9 @end

 

ViewController.m文件異步

 1 #import "ViewController.h"
 2 
 3 @interface ViewController ()
 4 
 5 @end
 6 
 7 @implementation ViewController
 8 
 9 - (void)viewDidLoad {
10     [super viewDidLoad];
11     // Do any additional setup after loading the view, typically from a nib.
12     
13     // 3.創建一個網址對象,指定請求數據的網址,本節將調用Facebook的公用API,獲取某個FB用戶的信息http://graph.facebook.com/apple-Inc
14     NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];
15     // 4.再經過網址對象建立網絡鏈接對象,
16     // 參數1:請求訪問路徑
17     // 參數2:緩存協議
18     // 參數3:網絡請求超時時間
19     NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10];
20     // 5.設置網絡通訊方式爲Post
21     [request setHTTPMethod:@"POST"];
22     // 6.設置網絡請求的參數
23     NSString *str = @"type=focus-c";
24     NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
25     [request setHTTPBody:data];
26     
27     // 7.使用網絡鏈接對象實現網絡通訊,網絡鏈接對象建立成功後,就建立了一個網絡鏈接。
28     NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self ];
29     
30 }
31 
32 // 8.添加一個代理方法,當接受到網絡反饋時,執行這個方法
33 -(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
34 {
35     self.receiveData = [NSMutableData data];
36 }
37 
38 // 9.添加一個代理方法,當接受到網絡數據時,執行這個方法
39 -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
40 {
41     self.receiveData = data;
42 }
43 
44 // 10.添加一個代理方法,當網絡聯絡的一系列動做結束後,執行這個方法。
45 -(void)connectionDidFinishLoading:(NSURLConnection *)connection
46 {
47     // 11.將接收到的網絡數據,從二進制數據格式,轉換爲字符串格式,並輸出
48     NSString *receiveStr = [[NSString alloc] initWithData:self.receiveData encoding:NSUTF8StringEncoding];
49     NSLog(@">>>>>>>>%@",receiveStr);
50 }
51 
52 // 11.添加一個代理方法,當網絡鏈接失敗時,執行這個方法
53 -(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
54 {
55     NSLog(@"%@",[error localizedDescription]);
56 }
57 
58 - (void)didReceiveMemoryWarning {
59     [super didReceiveMemoryWarning];
60     // Dispose of any resources that can be recreated.
61 }
62 
63 @end
相關文章
相關標籤/搜索