ToB企服应用市场:ToB评测及商务社交产业平台

标题: iOS 通过NSURLProtocol拦截WKWebView网络请求 [打印本页]

作者: 王國慶    时间: 2024-6-26 04:57
标题: iOS 通过NSURLProtocol拦截WKWebView网络请求
以前NSURLProtocol可以直接拦截UIWebView,后面升级成WKWebView发现拦截不到了
有细心爱研究的老铁发现了 [WKBrowsingContextController  registerSchemeForCustomProtocol:]  这个函数的存在
所以还是可以拦截的
直接上步骤
1.在控制器或者你喜好的地方注册NSURLProtocol(调用以下代码)
  1.     Class cls = NSClassFromString(@"WKBrowsingContextController");
  2.     SEL sel = NSSelectorFromString(@"registerSchemeForCustomProtocol:");
  3.     if ([(id)cls respondsToSelector:sel]) {
  4.         [(id)cls performSelector:sel withObject:@"http"];
  5.         [(id)cls performSelector:sel withObject:@"https"];
  6.     }
  7.     [NSURLProtocol registerClass:[CustomProtocol class]];
复制代码
2.在你自界说的NSURLProtocol类中实现拦截
  1. + (BOOL)canInitWithRequest:(NSURLRequest *)request{
  2.    
  3.     NSString *abstring = request.URL.absoluteString;
  4.    
  5.     if ([abstring containsString:@"你喜欢的标记"]) {
  6.         return YES;
  7.     }
  8.    
  9.     return NO;
  10. }
  11. + (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
  12. {
  13.     return request;
  14. }
复制代码
3.在你自界说的NSURLProtocol类中拦截后更换请求的内容,以下以图片为例
  1. - (void)startLoading{
  2.    
  3.     NSString *urlPathString = super.request.URL.absoluteString;
  4.    
  5.     if ([urlPathString containsString:@"你喜欢的标记"]) {
  6.         
  7.         urlPathString = [urlPathString stringByReplacingOccurrencesOfString:@"你喜欢的标记" withString:@"你喜欢的标记2"];
  8.     }
  9.    
  10.    
  11.     NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlPathString]];
  12.    
  13.     NSMutableDictionary *header = [NSMutableDictionary dictionary];
  14.     header[@"Content-Length"] = [NSString stringWithFormat:@"%ld",imageData.length];
  15.    
  16.     NSHTTPURLResponse *response = [[NSHTTPURLResponse alloc] initWithURL:self.request.URL
  17.                                                               statusCode:200 HTTPVersion:@"1.1" headerFields:header];
  18.     //回调
  19.     [self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageAllowed];
  20.     [self.client URLProtocol:self didLoadData:imageData];
  21.     [self.client URLProtocolDidFinishLoading:self];
  22. }
  23. - (void)stopLoading{
  24.     NSLog(@"stop");
  25. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4