iOS 通过NSURLProtocol拦截WKWebView网络请求

王國慶  金牌会员 | 2024-6-26 04:57:48 | 来自手机 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 835|帖子 835|积分 2509

以前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企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

王國慶

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表