WKUserScript Init导致EXC_BAD_ACCESS

时间:2017-02-08 21:59:56

标签: ios swift

使用XCode 8.2.1,Swift 3.0。当我尝试初始化WKUserScript时,我得到了一个

  

线程1:EXC_BAD_ACCESS(代码= 2,地址= 0x7fff584b7c4)

var scriptContent = "alert('hello');"

let script = WKUserScript(source: scriptContent,
                          injectionTime: .atDocumentEnd, 
                          forMainFrameOnly: true)//error here

不确定如何调试这个......

1 个答案:

答案 0 :(得分:0)

原来我复制了一个例子并且错过了它使用了加载视图覆盖并且实现不正确...导致下游错误。

override func loadView() {
    //assign the root view of your view hierarchy to the view property here
}