Apple/Swift
179_UIAlertController Button
우오우어아오앙
2018. 9. 23. 01:28
728x90
SMALL
UIAlertController Button
@IBAction func showAlertBtn1(){
let alert = UIAlertController(title: "Title Message", message: "Description", preferredStyle: .alert)
let action = UIAlertAction(title: "Close", style: .default, handler: nil)
alert.addAction(action)
present(alert, animated: true, completion: nil)
}
@IBAction func showAlertBtn2(){
let alert = UIAlertController(title: "Title Message", message: "Description", preferredStyle: .actionSheet)
let action = UIAlertAction(title: "Close", style: .default, handler: nil)
alert.addAction(action)
present(alert, animated: true, completion: nil)
}
728x90
반응형
LIST