我正在使用WebKit View(在Mac OSX App中),并且想要禁用JavaScript或Flash等插件。我未选中“界面生成器”中的选项,但未产生明显效果。我想念什么吗?

swift - Swift:WebKit View/WebView禁用JavaScript或Flash等插件-LMLPHP

最佳答案

无法弄清楚为什么Interface Builder中的复选框无效,但是,这是编程方式的解决方案:

customWebKitView.preferences.plugInsEnabled = false
customWebKitView.preferences.loadsImagesAutomatically = false
customWebKitView.preferences.javaScriptEnabled = false

10-07 23:23