码迷,mamicode.com
首页 > 其他好文 > 详细

NSUrlConnection 和 NSUrlRequest 的关系

时间:2014-08-08 12:28:26      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

开始看到这2个名字,总感觉NSUrlConnection才是主要的网络请求类,其实不是,先看官方文档

An NSURLConnection object lets you load the contents of a URL by providing a URL request object. The interface for NSURLConnection is sparse, providing only the controls to start and cancel asynchronous loads of a URL request. You perform most of your configuration on the URL request object itself.

Note: Although instances of this class are commonly called “connections”, there is not a 1:1 correlation between these objects and the underlying network connections.

如上所说,这里的connection,并不是只真正的网络连接,它仅仅负责开始和取消网络请求,并且会负责分发网络回调方法。

而NSURLRequest对象才是真正的网络设置类,一般利用NSMutableURLRequest类,它的主要方法如下:

setURL:

setHTTPMethod:

setTimeoutInterval:

- (void)addValue:(NSString *)value forHTTPHeaderField:(NSString *)field

- (void)setHTTPBody:(NSData *)data

 

 

 

 

 

NSUrlConnection 和 NSUrlRequest 的关系,布布扣,bubuko.com

NSUrlConnection 和 NSUrlRequest 的关系

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/breezemist/p/3898664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!