Im trying to show a UIAlertView in my swift App
alert = UIAlertView(title: \"\", message: \"bla\", delegate: self, cancelButtonTitle:
let alert = UIAlertController(title: "Title", message: "Message", preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: "Ok", style: UIAlertAction.Style.default, handler: nil)) self.present(alert, animated: true, completion: nil)