Если вы хотите go вернуться к предыдущему viewController при нажатии действия предупреждения, вам поможет код ниже.
let alert = UIAlertController(title: "Success", message: "Your password has been successfully changed!", preferredStyle: UIAlertController.Style.alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertAction.Style.cancel, handler: { action in
//perfoem any action you want on click of OK
self.navigationController?.popViewController(animated: true)
}))
self.present(alert, animated: true, completion: nil)