Written by
Amy
on
스위프트 Alert Controller
UI Alert Controller
- UIAlertController의 인스턴스를 만든다.
- UIAlertController에 추가할 Action인 UIAlertAction을 만든다.
- UIAlertController에 UIAlertAction을 추가한다.
- UIAlertController를 self(뷰콘트롤러)에 최종적으로 추가한다.
let alertController = UIAlertController(title: "로그인 성공", message: "로그인 성공하였습니다 ☺️", preferredStyle: .alert) // .actionSheet
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
alertController.addAction(cancelAction)
self.present(alertController, animated: true, completion: nil)
샘플 코드