Post

Replies

Boosts

Views

Activity

Convert swift to objective c
Could someone convert this to objective cThanks!https://developer.apple.com/documentation/webkit/wkwebview?language=objcCreating a WKWebView programmaticallyimport UIKitimport WebKitclass ViewController: UIViewController, WKUIDelegate { var webView: WKWebView! override func loadView() { let webConfiguration = WKWebViewConfiguration() webView = WKWebView(frame: .zero, configuration: webConfiguration) webView.uiDelegate = self view = webView } override func viewDidLoad() { super.viewDidLoad() let myURL = URL(string:"https://www.apple.com") let myRequest = URLRequest(url: myURL!) webView.load(myRequest) }}
5
0
2.5k
Jan ’20