alert view
-
Alert ControllerUIKit 2020. 8. 18. 00:33
alert의 모양은 총 두가지로, Alert View와 Action Sheet 가 있습니다. -> Action Sheet는 보통 여러 가지 선택지가 놓여져 있는 경우, 사용합니다. extension UIViewController{ func alert(title: String = "알림", message: String){ let alert = UIAlertController(title: title, message: message, preferredStyle: .alert) let okAction = UIAlertAction(title: "확인", style: .default, handler: nil) alert.addAction(okAction) present(alert, animated: true, co..