setMainFrameURL 真的是在 webView 中定义的吗

Is setMainFrameURL really defined in webView

我是 cocoa 编程的新手。我打算尝试使用 webkit View class。根据此页面:

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"