NSURLConnection與NSURLSession網(wǎng)絡基礎

AppDelegate.m

#import "AppDelegate.h"
#import "ViewController.h"


@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    ViewController *vc = [[ViewController alloc] init];
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = nav;
    
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    
}


- (void)applicationWillTerminate:(UIApplication *)application {
    
}


@end

ViewController.m

#import "ViewController.h"

typedef NS_ENUM(NSInteger , MDDemoType)
{
    MDDemoTypeRequest = 0,
    MDDemoTypeConnection,
    MDDemoTypeSession,
    MDDemoTypeSessionDelegate,
    MDDemoTypePostConnection,
    MDDemoTypePostSession,
};

static NSString *const kReuseIdentifier = @"kReuseIdentifier";

//static NSString *const kURLString = @"https://api.douban.com/v2/book/17604305?fields=title,id,url,publisher,author";
NSString * const kURLString = @"http://putsreq.com/0SMBaDzt2mCQn8UHXAir";

@interface ViewController ()<UITableViewDelegate , UITableViewDataSource , NSURLConnectionDelegate , NSURLConnectionDataDelegate , NSURLSessionDelegate , NSURLSessionDataDelegate , NSURLSessionTaskDelegate , NSURLSessionDownloadDelegate>

@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, strong) NSMutableArray<NSDictionary *> *dataSourceArray;
@property (nonatomic, strong) NSURLResponse *response;
@property (nonatomic, strong) NSMutableData *responseData;
@property (nonatomic, copy) NSString *responseString;
@property (nonatomic, strong) id responseInfo;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    [self loadTableView];
    [self loadData];
    
}

#pragma mark - loadTableView
- (void)loadTableView
{
    self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:kReuseIdentifier];
    [self.view addSubview:self.tableView];
}

#pragma mark - loadData
- (void)loadData
{
    self.dataSourceArray = [NSMutableArray array];
    
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypeRequest] , @"title" : @"創(chuàng)建請求"}];
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypeConnection] , @"title" : @"NSURLConnection"}];
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypeSession] , @"title" : @"NSURLSession"}];
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypeSessionDelegate] , @"title" : @"NSURLSession delegate"}];
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypePostConnection] , @"title" : @"POST請求 NSURLConnection"}];
    [self.dataSourceArray addObject:@{@"tag" : [NSNumber numberWithInteger:MDDemoTypePostSession] , @"title" : @"POST請求 NSURLSession"}];
    
}

#pragma mark - <UITableViewDataSource>
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.dataSourceArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kReuseIdentifier];
    cell.textLabel.text = [self.dataSourceArray[indexPath.row] objectForKey:@"title"];
    return cell;
}

#pragma mark - <UITableViewDelegate>
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    MDDemoType demoType = [[self.dataSourceArray[indexPath.row] objectForKey:@"tag"] integerValue];
    switch (demoType) {
        case MDDemoTypeRequest:
            [self testRequest];
            break;
        case MDDemoTypeConnection:
            [self testNSURLConnection];
            break;
        case MDDemoTypeSession:
            [self testSession];
            break;
        case MDDemoTypeSessionDelegate:
            [self testSessionDelegate];
            break;
        case MDDemoTypePostConnection:
            [self testPostConnection];
            break;
        case MDDemoTypePostSession:
            [self testPostSession];
            break;
        default:
            break;
    }
}

/**
 *  Demo...
 
 */

#pragma mark - testRequest
- (void)testRequest
{
    NSURL *url = [NSURL URLWithString:kURLString];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    request.HTTPMethod = @"POST";
//    [request setValue:@"testRequest" forHTTPHeaderField:@"User-Agent"];
    request.allHTTPHeaderFields = @{@"application/json" : @"Content-Type",
                                    @"testRequest" : @"User-Agent"};
    
}

#pragma mark - testNSURLConnection
- (void)testNSURLConnection
{
    NSURL *url = [NSURL URLWithString:kURLString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
    [connection start];
}

#pragma mark - <NSURLConnectionDelegate>
/**
 *  接收到網(wǎng)絡請求
 
 */
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    NSLog(@"接收到網(wǎng)絡數(shù)據(jù)   %@" , response);
    self.response = response;
    if ([response isKindOfClass:[NSHTTPURLResponse class]])
    {
        NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
        //取到狀態(tài)碼:
        NSInteger statusCode = httpResponse.statusCode;
        //取到請求頭部:
        NSDictionary *headerDic = httpResponse.allHeaderFields;
        NSLog(@"statusCode = %@" , @(statusCode));
        NSLog(@"headerDic = %@" , headerDic);
    }
    //初始化一個空的data:
    self.responseData = [NSMutableData data];
    
}
/**
 *  接收到網(wǎng)絡數(shù)據(jù)
 
 */
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    NSLog(@"正在接收網(wǎng)絡數(shù)據(jù)   %@" , data);
    
    if (nil != data) {
        [self.responseData appendData:data];
    }
}
/**
 *  完成網(wǎng)絡請求
 
 */
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    NSLog(@"網(wǎng)路請求完成  =  %@", connection);
    NSLog(@"currentRequest  =  %@" , connection.currentRequest);
    //網(wǎng)絡請求完成后把data文件轉成可讀的string類型:
    self.responseString = [[NSString alloc] initWithData:self.responseData encoding:NSUTF8StringEncoding];
    self.responseInfo = [NSJSONSerialization JSONObjectWithData:self.responseData options:0 error:nil];
    NSLog(@"self.responseInfo = %@" , self.responseInfo);
    
}
/**
 *  網(wǎng)絡請求失敗

 */
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    NSLog(@"網(wǎng)路請求失敗  =  %@" , error);
    NSLog(@"currentRequest  =  %@" , connection.currentRequest);
    
}

#pragma mark - testSession
- (void)testSession
{
    NSURL *url =[NSURL URLWithString:kURLString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
    NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        
        self.response = response;
        self.responseData = [NSMutableData dataWithData:data];
        self.responseString = [[NSString alloc] initWithData:self.responseData encoding:NSUTF8StringEncoding];
        self.responseInfo = [NSJSONSerialization JSONObjectWithData:self.responseData options:0 error:&error];
        
    }];
    [task resume];
    
}

#pragma mark - testSessionDelegate
- (void)testSessionDelegate
{
    //發(fā)送網(wǎng)絡會話請求任務:
    //創(chuàng)建請求地址:
    NSURL *url = [NSURL URLWithString:kURLString];
    //創(chuàng)建請求:
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    //創(chuàng)建會話:
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:[NSOperationQueue mainQueue]];
    //會話根據(jù)網(wǎng)絡請求創(chuàng)建出網(wǎng)絡任務:
    NSURLSessionTask *task = [session dataTaskWithRequest:request];
    //開啟任務:
    [task resume];
}

#pragma mark - <NSURLSessionDelegate>
//接收到響應:
- (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveResponse:(NSURLResponse *)response completionHandler:(void (^)(NSURLSessionResponseDisposition))completionHandler
{
    self.response = response;
    self.responseData = [NSMutableData data];
    //如果存在回調信息就執(zhí)行該回調:
    if (completionHandler) {
        //繼續(xù)接收從服務器返回的數(shù)據(jù):NSURLSessionResponseAllow;
        completionHandler(NSURLSessionResponseAllow);
    }
}

//接收響應信息中...:
- (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
{
    [self.responseData appendData:data];
}

//響應接收完成或者響應接收失敗打印錯誤信息:
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
{
    //處理錯誤:
    if (error)
    {
        NSLog(@"error = %@", error);
    }
    else
    {
        self.responseString = [[NSString alloc] initWithData:self.responseData encoding:NSUTF8StringEncoding];
        self.responseInfo = [NSJSONSerialization JSONObjectWithData:self.responseData options:0 error:nil];
    }
}

#pragma mark - testPostConnection
- (void)testPostConnection
{
    NSURL *url = [NSURL URLWithString:kURLString];
    NSMutableURLRequest *mutableRequest = [NSMutableURLRequest requestWithURL:url];
    mutableRequest.HTTPMethod = @"POST";
    [mutableRequest setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    
    NSDictionary *parameters = @{
                                 @"book": @(17604305),
                                 @"title":@"好書",
                                 @"comment":@"我覺得這是一本好書",
                                 @"rating":@(5)
                                 };
    
    NSData *body = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];
    mutableRequest.HTTPBody = body;
    //創(chuàng)建connection鏈接:
    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:mutableRequest delegate:self startImmediately:NO];
    [connection start];
    
}

#pragma mark - testPostSession
- (void)testPostSession
{
    NSURL *url = [NSURL URLWithString:kURLString];
    NSMutableURLRequest *mutableRequest = [NSMutableURLRequest requestWithURL:url];
    mutableRequest.HTTPMethod = @"POST";
    [mutableRequest setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    NSDictionary *parameters = @{
                                 @"book": @(17604305),
                                 @"title":@"好書",
                                 @"comment":@"我覺得這是一本好書",
                                 @"rating":@(5)
                                 };
    NSData *body = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];
    mutableRequest.HTTPBody = body;
    
    
    //delegate方式:
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:[NSOperationQueue mainQueue]];
    NSURLSessionTask *task = [session dataTaskWithRequest:mutableRequest];
    [task resume];
    
    /*
    //block方式:
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
    NSURLSessionDataTask *task = [session dataTaskWithRequest:mutableRequest completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        
        self.response = response;
        self.responseData = [NSMutableData dataWithData:data];
        self.responseString = [[NSString alloc] initWithData:self.responseData encoding:NSUTF8StringEncoding];
        self.responseInfo = [NSJSONSerialization JSONObjectWithData:self.responseData options:0 error:&error];
        NSLog(@"%@" , self.responseString);
        
    }];
    
    [task resume];
    */
     
}

#pragma mark - 內存警告
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    
}

@end

愿編程讓這個世界更美好

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末擦耀,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖魄揉,帶你破解...
    沈念sama閱讀 218,204評論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異铛纬,居然都是意外死亡嫉戚,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,091評論 3 395
  • 文/潘曉璐 我一進店門维贺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來它掂,“玉大人,你說我怎么就攤上這事溯泣∨扒铮” “怎么了?”我有些...
    開封第一講書人閱讀 164,548評論 0 354
  • 文/不壞的土叔 我叫張陵发乔,是天一觀的道長熟妓。 經(jīng)常有香客問我,道長栏尚,這世上最難降的妖魔是什么起愈? 我笑而不...
    開封第一講書人閱讀 58,657評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮译仗,結果婚禮上抬虽,老公的妹妹穿的比我還像新娘。我一直安慰自己纵菌,他們只是感情好阐污,可當我...
    茶點故事閱讀 67,689評論 6 392
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著咱圆,像睡著了一般笛辟。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上序苏,一...
    開封第一講書人閱讀 51,554評論 1 305
  • 那天手幢,我揣著相機與錄音,去河邊找鬼忱详。 笑死围来,一個胖子當著我的面吹牛,可吹牛的內容都是我干的匈睁。 我是一名探鬼主播监透,決...
    沈念sama閱讀 40,302評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼航唆!你這毒婦竟也來了胀蛮?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 39,216評論 0 276
  • 序言:老撾萬榮一對情侶失蹤佛点,失蹤者是張志新(化名)和其女友劉穎醇滥,沒想到半個月后黎比,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,661評論 1 314
  • 正文 獨居荒郊野嶺守林人離奇死亡鸳玩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 37,851評論 3 336
  • 正文 我和宋清朗相戀三年阅虫,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片不跟。...
    茶點故事閱讀 39,977評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡颓帝,死狀恐怖,靈堂內的尸體忽然破棺而出窝革,到底是詐尸還是另有隱情购城,我是刑警寧澤,帶...
    沈念sama閱讀 35,697評論 5 347
  • 正文 年R本政府宣布虐译,位于F島的核電站瘪板,受9級特大地震影響,放射性物質發(fā)生泄漏漆诽。R本人自食惡果不足惜侮攀,卻給世界環(huán)境...
    茶點故事閱讀 41,306評論 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望厢拭。 院中可真熱鬧兰英,春花似錦、人聲如沸供鸠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,898評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽楞捂。三九已至薄坏,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間寨闹,已是汗流浹背颤殴。 一陣腳步聲響...
    開封第一講書人閱讀 33,019評論 1 270
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鼻忠,地道東北人。 一個月前我還...
    沈念sama閱讀 48,138評論 3 370
  • 正文 我出身青樓杈绸,卻偏偏與公主長得像帖蔓,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子瞳脓,可洞房花燭夜當晚...
    茶點故事閱讀 44,927評論 2 355

推薦閱讀更多精彩內容