1、NSURLRequest
@interface NSURLRequest : NSObject
{
@private
NSURLRequestInternal *_internal;
}
/*!
创建NSURLRequest对象
默认使用NSURLRequestUseProtocolCachePolicy缓存逻辑
默认请求超时时限为60s
*/
+ (instancetype)requestWithURL:(NSURL *)URL;
/*!
是否支持安全编码
*/
+ (BOOL)supportsSecureCoding;
/*!
创建时设置缓存策略和超时时限
@param URL 请求链接
@param cachePolicy 缓存策略
@param timeoutInterval 超时时间
*/
+ (instancetype)requestWithURL:(NSURL *)URL cachePolicy:(NSURLRequestCachePolicy)cachePolicy timeoutInterval:(NSTimeInterval)timeoutInterval;
/*!
init方法进行对象的创建
默认使用NSURLRequestUseProtocolCachePolicy缓存逻辑
默认请求超时时限为60s
*/
- (instancetype)initWithURL:(NSURL *)URL;
/*!
创建NSURLRequest对象
默认使用NSURLRequestUseProtocolCachePolicy缓存逻辑
默认请求超时时限为60s
*/
- (instancetype)initWithURL:(NSURL *)URL cachePolicy:(NSURLRequestCachePolicy)cachePolicy timeoutInterval:(NSTimeInterval)timeoutInterval;
/*!
只读属性、获取对象的URL
*/
@property (nullable, readonly, copy) NSURL *URL;
/*!
只读属性、获取对象的缓存策略
*/
/*
NSURLRequestCachePolicy枚举如下:
typedef NS_ENUM(NSUInteger, NSURLRequestCachePolicy)
{
// 默认的缓存协议
NSURLRequestUseProtocolCachePolicy = 0,
// 无论有无本地缓存数据 都进行从新请求
NSURLRequestReloadIgnoringLocalCacheData = 1,
// 忽略本地和远程的缓存数据 未实现的策略
NSURLRequestReloadIgnoringLocalAndRemoteCacheData = 4,
// 无论有无缓存数据 都进行从新请求
NSURLRequestReloadIgnoringCacheData = NSURLRequestReloadIgnoringLocalCacheData,
// 先检查缓存 如果没有缓存再进行请求
NSURLRequestReturnCacheDataElseLoad = 2,
// 类似离线模式,只读缓存 无论有无缓存都不进行请求
NSURLRequestReturnCacheDataDontLoad = 3,
// 未实现的策略
NSURLRequestReloadRevalidatingCacheData = 5, // Unimplemented
};
*/
@property (readonly) NSURLRequestCachePolicy cachePolicy;
/*!
只读属性、获取对象的超时时间
*/
@property (readonly) NSTimeInterval timeoutInterval;
/*!
只读属性、获取缓存路径
*/
@property (nullable, readonly, copy) NSURL *mainDocumentURL;
/*!
只读属性、获取网络请求的服务类型
*/
/*
typedef NS_ENUM(NSUInteger, NSURLRequestNetworkServiceType)
{
// 普通网络传输,默认使用这个
NSURLNetworkServiceTypeDefault = 0,
// 网络语音通信传输,只能在VoIP使用
NSURLNetworkServiceTypeVoIP = 1,
// 影像传输
NSURLNetworkServiceTypeVideo = 2,
// 网络后台传输,优先级不高时可使用。对用户不需要的网络操作可使用
NSURLNetworkServiceTypeBackground = 3,
// 语音传输
NSURLNetworkServiceTypeVoice = 4
};
*/
@property (readonly) NSURLRequestNetworkServiceType networkServiceType;
/*!
只读属性、获取是否允许蜂窝请求
*/
@property (readonly) BOOL allowsCellularAccess;
@end
2、NSMutableURLRequest
NSURLRequest的子类,放开了许多只读权限。
@interface NSMutableURLRequest : NSURLRequest
/*!
设置请求的URL
*/
@property (nullable, copy) NSURL *URL;
/*!
设置请求的缓存策略
*/@property NSURLRequestCachePolicy cachePolicy;
/*!
设置请求的超时时间
*/
@property NSTimeInterval timeoutInterval;
/*!
设置请求的缓存目录
*/
@property (nullable, copy) NSURL *mainDocumentURL;
/*!
设置请求的网络服务类型
*/
@property NSURLRequestNetworkServiceType networkServiceType NS_AVAILABLE(10_7, 4_0);
/*!
设置请求是否支持蜂窝网络
*/
@property BOOL allowsCellularAccess NS_AVAILABLE(10_8, 6_0);
3、NSURLRequest (NSHTTPURLRequest)
NSURLRequest的扩展,基本都是只读属性。
@interface NSURLRequest (NSHTTPURLRequest)
/*!
获取HTTP请求的方式
*/
@property (nullable, readonly, copy) NSString *HTTPMethod;
/*!
获取所有的请求头
*/
@property (nullable, readonly, copy) NSDictionary *allHTTPHeaderFields;
/*!
获取HTTP请求头的值
*/
- (nullable NSString *)valueForHTTPHeaderField:(NSString *)field;
/*!
获取Post方式下的请求体
*/
@property (nullable, readonly, copy) NSData *HTTPBody;
/*!
获取http请求体的输入流
*/
@property (nullable, readonly, retain) NSInputStream *HTTPBodyStream;
/*!
发送请求时是否发送cookie数据
*/
@property (readonly) BOOL HTTPShouldHandleCookies;
/*!
请求时是否按顺序收发
*/
@property (readonly) BOOL HTTPShouldUsePipelining API_AVAILABLE(macos(10.7), ios(4.0), watchos(2.0), tvos(9.0));
@end
4、NSMutableURLRequest (NSMutableHTTPURLRequest)
NSMutableURLRequest的扩展,放开了许多只读权限,可以针对HTTP进行许多设置。
@interface NSMutableURLRequest (NSMutableHTTPURLRequest)
/*!
设置HTTP请求的方式、默认为Get
*/
@property (copy) NSString *HTTPMethod;
/*!
通过字典、设置HTTP请求头
*/
@property (nullable, copy) NSDictionary *allHTTPHeaderFields;
/*!
通过键值对、设置HTTP请求头
*/
- (void)setValue:(nullable NSString *)value forHTTPHeaderField:(NSString *)field;
/*!
通过键值对、为HTTP请求头添加字段
*/
- (void)addValue:(NSString *)value forHTTPHeaderField:(NSString *)field;
/*!
在Post方式下、设置请求体
*/
@property (nullable, copy) NSData *HTTPBody;
/*!
设置http请求体的输入流
*/
@property (nullable, retain) NSInputStream *HTTPBodyStream;
/*!
发送请求时是否发送cookie数据
*/
@property BOOL HTTPShouldHandleCookies;
/*!
请求时是否按顺序收发
*/
@property BOOL HTTPShouldUsePipelining API_AVAILABLE(macos(10.7), ios(4.0), watchos(2.0), tvos(9.0));
@end
原文链接:
iOS基础深入补完计划NSURLRequest/NSURLResponse相关API