Я использую WKWebView
для загрузки некоторых ссылок в моем приложении. Я хочу отключить все раздражающие баннеры JavaScript, которые отображаются почти на всех веб-страницах. Есть ли простая функция, которая может это сделать?
Swift WKWebView отключить Javascript
Ответ 1
WKWebView
имеет конфигурацию для отключения JavaScript, проверьте Apple reference.
var javaScriptEnabled: Bool
Обновление
let preferences = WKPreferences()
preferences.javaScriptEnabled = false
// Create a configuration for the preferences
let configuration = WKWebViewConfiguration()
configuration.preferences = preferences
// Instantiate the web view
webView = WKWebView(frame: view.bounds, configuration: configuration)
// Load page
if let theWebView = webView{
let url = NSURL(string: "http://www.apple.com")
let urlRequest = NSURLRequest(URL: url!)
theWebView.loadRequest(urlRequest)
theWebView.navigationDelegate = self
view.addSubview(theWebView)
}
Ответ 2
Для нас, которые все еще используют Objective-C, вот решение:
WKPreferences *prefs = [[WKPreferences alloc]init];
prefs.javaScriptEnabled = NO;
// Create a configuration for the preferences
WKWebViewConfiguration *config = [[WKWebViewConfiguration alloc]init];
config.preferences = prefs;
// Instantiate the web view
_webView = [[WKWebView alloc]initWithFrame:[[UIScreen mainScreen]bounds] configuration:config];