let myAlert = UIAlertController(
title: "Alert Title",
message: "Alert Message",
preferredStyle: .alert
)// 확인 버튼을 터치하는 단순한 액션
alert.addAction(
UIAlertAction(title: "확인", style: .default)
)
// 취소 버튼을 터치하면 버튼 텍스트를 변경하는 액션
alert.addAction(
UIAlertAction(
title: "취소",
style: .cancel,
handler: {
action in self.alertButton.setTitle("버튼 이름 변경", for: .normal)
}
)
)
present(alert, animated: true)