UIAlertView is deprecated and unavailable for UIScene based applications, please use UIAlertController
问题 I'm new to Swift and I'm getting this Error. I don't get it because I don't use any type of alert in my code. Here is my ViewController: import UIKit import WebKit class ViewController: UIViewController{ @IBOutlet weak var webView: WKWebView! override func viewDidLoad() { super.viewDidLoad() let url = URL(string: "https://www.google.com/maps")! webView.load(URLRequest(url: url)) } } I only want to use WKWebView in my app and use the location. I already added