美文网首页
WKWebView 拦截器WKContentRuleListSt

WKWebView 拦截器WKContentRuleListSt

作者: 秀才不才 | 来源:发表于2020-07-28 13:19 被阅读0次

WKContentRuleList是应用于Web内容的编译规则列表,适用于 iOS11.0+ 的设备。我们可以通过给webView.configuration.userContentController添加WKContentRuleList,使WebView的加载遵守相关规则。

记录下
  • 优酷moblie视频播放拦截json
[{"trigger" : {"url-filter" : ".*cp31.ott.cibntv.net\/.*"},"action" : {"type" : "block"}},
{"trigger" : {"url-filter" : ".*pl-ali.youku.com.*"},"action" : {"type" : "block"}}]

NSData *jsonData = [NSJSONSerialization dataWithJSONObject:[self configMakeHttps] options:NSJSONWritingPrettyPrinted error:nil];
NSString *jsonStr = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    
WKUserContentController *_userContentController = [[WKUserContentController alloc] init];
WKWebViewConfiguration *_configuration = [[WKWebViewConfiguration alloc] init];

if (@available(iOS 11.0, *)) {
  [[WKContentRuleListStore defaultStore] compileContentRuleListForIdentifier: @"ContentBlockingRules" encodedContentRuleList: jsonStr completionHandler:^(WKContentRuleList *contentRuleList, NSError *error) {
  [_configuration.userContentController addContentRuleList:contentRuleList];
  }];
} else {
  // Fallback on earlier versions
}

使用介绍
官方文档

相关文章

网友评论

      本文标题:WKWebView 拦截器WKContentRuleListSt

      本文链接:https://www.haomeiwen.com/subject/ypdfrktx.html