UIAlertController Button@IBAction func showAlertBtn1(){ let alert = UIAlertController(title: "Title Message", message: "Description", preferredStyle: .alert) let action = UIAlertAction(title: "Close", style: .default, handler: nil) alert.addAction(action) present(alert, animated: true, completion: nil)} @IBAction func showAlertBtn2(){ let alert = UIAlertController(title: "Title Message", message..