iOS/코드조각

[iOS, Swift] UIAlertController 경고창 예제

검은참깨두유vm 2022. 8. 21. 15:26
반응형

iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.

 

let alert = UIAlertController(title: "Simple", message: "Simple Message with Cancel and OK", preferredStyle: .alert)

alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { _ in
    print("Cancel")
}))
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
    print("OK")
}))

self.present(alert, animated: true)

 

실행 결과 :

반응형