본문 바로가기

Study/Programming

스위프트 기본 알림창

반응형
var alert = UIAlertView()
alert.title = "타이틀"
alert.message = "내용"
alert.addButtonWithTitle("버튼 텍스트")
alert.show()


반응형