반응형
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)
반응형
'아이폰' 카테고리의 다른 글
Swift Outline UILabel (0) | 2021.11.20 |
---|---|
Swift Dispatch async, asyncAfter (0) | 2021.11.20 |
Swift Post 통신, VO <-> Json(Codable 사용) (0) | 2021.11.18 |
Swift ViewController(뷰컨트롤러) 띄우기 (0) | 2021.11.18 |
IOS Swift AES(128, 192, 256) 암복호화 (0) | 2021.11.18 |
최근댓글