I have an app that loads a webpage, but prevents the downloads of images, fonts, javascripts, etc. For this I implemented an NSURLProtocol
subclass which works very well with UIWebView.
However I'm migrating to WKWebview
, and realise that my crafted NSURLProtocol
class no longer works to filter out these resources.
Have anyone an insight as to how to achive the filtering/blocking?
In case you're wondering how am I doing the migration, I started with this post: http://floatlearning.com/2014/12/uiwebview-wkwebview-and-tying-them-together-using-swift/
As of iOS 9.0 there is no way to intercept network requests for the
WKWebView
. You can do this with JavaScript in a limited way.Please file a WebKit bug or an Apple bug to request this functionality. Many of us are in need of these hooks.
Since iOS 11 you can use
WKContentRuleList
First, create a Content Rule or a list. Each rule is comprised of a trigger and an action. See Apple's Documentation on Content Rule creation
This is a creation example, blocks all image and Style Sheet content, but allows those ended on jpeg by way of ignoring the previous rules:
Having your list of rules, you can add them to the ContentRuleListStore
If later you want to remove all your rules, call:
Here is the 2017 WWDC video
Best of lucks!
I've created a sample project on Github WKContentRuleExample
In case anybody else is interested in an offline-only
WKWebView
: The following approach is a modification of @dequin's answer. It uses content blocking rules to block all requests to remote resources (URLs that don't start withfile://
):