溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

iOS中NSURLProtocol怎么用

發(fā)布時(shí)間:2021-07-10 13:57:14 來源:億速云 閱讀:137 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“iOS中NSURLProtocol怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“iOS中NSURLProtocol怎么用”這篇文章吧。

具體如下:

NSURLProtocol定義

這兩天在優(yōu)化項(xiàng)目,無意間看到了NSURLProtocol,學(xué)習(xí)一下順便總結(jié)下來。

NSURLProtocol也是蘋果眾多黑魔法中的一種,能夠讓你去重新定義蘋果的URL加載系統(tǒng) (URL Loading System)的行為,URL Loading System里有許多類用于處理URL請(qǐng)求,比如NSURL,NSURLRequest,NSURLConnection和NSURLSession等,當(dāng)URL Loading System使用NSURLRequest去獲取資源的時(shí)候,它會(huì)創(chuàng)建一個(gè)NSURLProtocol子類的實(shí)例,NSURLProtocol看起來像是一個(gè)協(xié)議,但其實(shí)這是一個(gè)類,而且必須使用該類的子類,并且需要被注冊。

NSURLProtocol使用范圍

只要是使用NSURLConnection或者 NSURLSession實(shí)現(xiàn)的,你都可以通過NSURLProtocol做一些自定義的操作。

1、自定義請(qǐng)求和響應(yīng)

2、網(wǎng)絡(luò)的緩存處理(H5離線包 和 網(wǎng)絡(luò)圖片緩存)

3、重定向網(wǎng)絡(luò)請(qǐng)求

4、為測試提供數(shù)據(jù)Mocking功能,在沒有網(wǎng)絡(luò)的情況下使用本地?cái)?shù)據(jù)返回。

5、過濾掉一些非法請(qǐng)求

6、快速進(jìn)行測試環(huán)境的切換

7、攔截圖片加載請(qǐng)求,轉(zhuǎn)為從本地文件加載

8、可以攔截UIWebView,基于系統(tǒng)的NSURLConnection或者NSURLSession進(jìn)行封裝的網(wǎng)絡(luò)請(qǐng)求。目前WKWebView無法被NSURLProtocol攔截。

9、當(dāng)有多個(gè)自定義NSURLProtocol注冊到系統(tǒng)中的話,會(huì)按照他們注冊的反向順序依次調(diào)用URL加載流程。當(dāng)其中有一個(gè)NSURLProtocol攔截到請(qǐng)求的話,后續(xù)的NSURLProtocol就無法攔截到該請(qǐng)求。

NSURLProtocol自定義

#import <Foundation/Foundation.h>
 
@interface CustomURLProtocol : NSURLProtocol
 
@end

要實(shí)現(xiàn)下面的方法

+ canInitWithRequest: 
//抽象方法,子類給出是否能相應(yīng)該請(qǐng)求。如果響應(yīng)YES,說明自己的CustomURLProtocol實(shí)現(xiàn)該請(qǐng)求。
 
+ canonicalRequestForRequest:
//抽象方法,重寫該方法,可以對(duì)請(qǐng)求進(jìn)行修改,例如添加新的頭部信息,修改,修改url等,返回修改后的請(qǐng)求。
 
+ requestIsCacheEquivalent:toRequest:
//看都是緩存了
 
- startLoading:
//開始下載,需要在該方法中發(fā)起一個(gè)請(qǐng)求,對(duì)于NSURLConnection來說,就是創(chuàng)建一個(gè)NSURLConnection,對(duì)于NSURLSession,就是發(fā)起一個(gè)NSURLSessionTask 。一般下載前需要設(shè)置該請(qǐng)求正在進(jìn)行下載,防止多次下載的情況發(fā)生
 
- stopLoading:
//停止相應(yīng)請(qǐng)求,清空請(qǐng)求Connection 或 Task

使用自定義NSURLProtocol類

1.在單個(gè)的UIViewController中使用

//導(dǎo)入自定義NSURLProtocol類
#import "CustomURLProtocol.h"
//在ViewDidLoad中添加攔截網(wǎng)絡(luò)請(qǐng)求的代碼
//注冊網(wǎng)絡(luò)請(qǐng)求攔截
[NSURLProtocol registerClass:[CustomURLProtocol class]];
//在ViewWillDisappear中添加取消網(wǎng)絡(luò)攔截的代碼
//取消注冊網(wǎng)絡(luò)請(qǐng)求攔截
[NSURLProtocol unregisterClass:[CustomURLProtocol class]];

2.攔截整個(gè)App中所有的網(wǎng)絡(luò)請(qǐng)求

//直接在AppDelegate中的didFinishLaunchingWithOptions注冊網(wǎng)絡(luò)攔截代碼
//注冊Protocol
[NSURLProtocol registerClass:[CustomURLProtocol class]];
NSURLProtocol使用實(shí)例

#define URLProtocolHandledKey @"URLProtocolHandledKey"
 
+ (BOOL)canInitWithRequest:(NSURLRequest *)request{
 //只處理http和https請(qǐng)求
  NSString *scheme = [[request URL] scheme];
  if ( ([scheme caseInsensitiveCompare:@"http"] == NSOrderedSame ||
   [scheme caseInsensitiveCompare:@"https"] == NSOrderedSame)){
    //看看是否已經(jīng)處理過了,防止無限循環(huán)
    if ([NSURLProtocol propertyForKey:URLProtocolHandledKey inRequest:request]) {
      return NO;
    }
    return YES;
  }
  return NO;
}
 
+ (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
   /** 可以在此處添加頭等信息 */
  NSMutableURLRequest *mutableReqeust = [request mutableCopy];
  mutableReqeust = [self redirectHostInRequset:mutableReqeust];
  return mutableReqeust;
}
 
+(NSMutableURLRequest*)redirectHostInRequset:(NSMutableURLRequest*)request{
  if ([request.URL host].length == 0) {
    return request;
  }
 
  NSString *originUrlString = [request.URL absoluteString];
  NSString *originHostString = [request.URL host];
  NSRange hostRange = [originUrlString rangeOfString:originHostString];
  if (hostRange.location == NSNotFound) {
    return request;
  }
  //定向薄荷喵到主頁
  NSString *ip = @"bohemiao.com";
 
  // 替換域名
  NSString *urlString = [originUrlString stringByReplacingCharactersInRange:hostRange withString:ip];
  NSURL *url = [NSURL URLWithString:urlString];
  request.URL = url;
 
  return request;
}
 
+ (BOOL)requestIsCacheEquivalent:(NSURLRequest *)a toRequest:(NSURLRequest *)b{
  return [super requestIsCacheEquivalent:a toRequest:b];
}
 
- (void)startLoading{
  NSMutableURLRequest *mutableReqeust = [[self request] mutableCopy];
  //標(biāo)示該request已經(jīng)處理過了,防止無限循環(huán)
  [NSURLProtocol setProperty:@YES forKey:URLProtocolHandledKey inRequest:mutableReqeust];
  self.connection = [NSURLConnection connectionWithRequest:mutableReqeust delegate:self];
  //使用NSURLSession也是一樣的
}
 
- (void)stopLoading{
  [self.connection cancel];
}
 
- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
  [self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
}
 
- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
  [self.client URLProtocol:self didLoadData:data];
}
 
- (void) connectionDidFinishLoading:(NSURLConnection *)connection {
  [self.client URLProtocolDidFinishLoading:self];
}
 
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
  [self.client URLProtocol:self didFailWithError:error];
}

上面用到的一些NSURLProtocolClient方法

@protocol NSURLProtocolClient <NSObject>
 
//請(qǐng)求重定向
- (void)URLProtocol:(NSURLProtocol *)protocol wasRedirectedToRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse;
 
// 響應(yīng)緩存是否合法
- (void)URLProtocol:(NSURLProtocol *)protocol cachedResponseIsValid:(NSCachedURLResponse *)cachedResponse;
 
//剛接收到Response信息
- (void)URLProtocol:(NSURLProtocol *)protocol didReceiveResponse:(NSURLResponse *)response cacheStoragePolicy:(NSURLCacheStoragePolicy)policy;
 
//數(shù)據(jù)加載成功
- (void)URLProtocol:(NSURLProtocol *)protocol didLoadData:(NSData *)data;
 
//數(shù)據(jù)完成加載
- (void)URLProtocolDidFinishLoading:(NSURLProtocol *)protocol;
 
//數(shù)據(jù)加載失敗
- (void)URLProtocol:(NSURLProtocol *)protocol didFailWithError:(NSError *)error;
 
//為指定的請(qǐng)求啟動(dòng)驗(yàn)證
- (void)URLProtocol:(NSURLProtocol *)protocol didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
 
//為指定的請(qǐng)求取消驗(yàn)證
- (void)URLProtocol:(NSURLProtocol *)protocol didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
 
@end

以上是“iOS中NSURLProtocol怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI