I have an embed webview in my cocoa application. However, the webview does not automatically take focus. I tried to do this with swift but it did not work:
override func viewDidAppear() {
webView.window!.makeFirstResponder(webView)
}
what am I doing wrong. How can I make the webview taking the focus once the window is opened?