我是可可编程的新手。我打算尝试使用webkit View类。根据此页面:
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/WebKit/Classes/WebView_Class/index.html
Web视图应具有一个名为“ setMainFrameURL”的方法。但是,当我尝试使用它时,出现一条错误消息,提示未定义该方法。这怎么可能?这种方法真的存在吗?
最佳答案
setMainFrameURL
是Objective C方法。等效的Swift语法为
webView.mainFrameURL = "http://www.google.com"
关于macos - setMainFrameURL是否确实在webView中定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31490147/