반응형

1. Alert

let alert = UIAlertController(title: "알림", message: "얼럿 메세지 입니다.", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "확인", style: .default) { action in
  //처리...
})
self.present(alert, animated: true, completion: nil)

 

2. Confirm

let alert = UIAlertController(title: "알림", message: "로그인 하시겠습니까?", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "취소", style: .default) { action in
  //취소처리...
})
alert.addAction(UIAlertAction(title: "확인", style: .default) { action in
  //확인처리...
})
self.present(alert, animated: true, completion: nil)
반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기