由於iOS的11你可以使用WKContentRuleList
首先,創建內容規則或列表。每條規則都由一個觸發器和一個動作組成。見 Apple's Documentation on Content Rule creation
這是一個創建實例,阻止所有圖像和樣式表的內容,但允許通過忽略以前的規則的方式對JPEG的結束:
let blockRules = """
[{
"trigger": {
"url-filter": ".*",
"resource-type": ["image"]
},
"action": {
"type": "block"
}
},
{
"trigger": {
"url-filter": ".*",
"resource-type": ["style-sheet"]
},
"action": {
"type": "block"
}
},
{
"trigger": {
"url-filter": ".*.jpeg"
},
"action": {
"type": "ignore-previous-rules"
}
}]
"""
有規則清單,你可以將它們添加到ContentRuleListStore
import WebKit
@IBOutlet weak var wkWebView: WKWebView!
let request = URLRequest(url: URL(string: "https://yourSite.com/")!)
WKContentRuleListStore.default().compileContentRuleList(
forIdentifier: "ContentBlockingRules",
encodedContentRuleList: blockRules) { (contentRuleList, error) in
if let error = error {
return
}
let configuration = self.webView.configuration
configuration.userContentController.add(contentRuleList!)
self.wkWwebView.load(self.request)
}
如果以後要刪除所有的規則,請致電:
self.wkWebView.configuration.userContentController.removeAllContentRuleLists()
self.wkWebView.load(self.request)
這裏是2017 WWDC video
最佳盧克斯的!
我創建了一個示例項目on Github WKContentRuleExample
我會說這不是WebKit的錯誤。 Android已經有相當長的一段時間了。阻止圖像加載(以及其他許多事情)從一開始就一直存在。蘋果公司根本沒有公開這些功能。 – Russ
提交錯誤是讓蘋果知道這是我們可以訪問的功能的最佳方式。 –