공감 및 댓글은 포스팅 하는데 아주아주 큰 힘이 됩니다!!포스팅 내용이 찾아주신 분들께 도움이 되길 바라며더 깔끔하고 좋은 포스팅을 만들어 나가겠습니다^^ 오늘 포스팅 할 내용은 swift3 ios Yes No 버튼이 있는 Alert Dialog 생성 방법입니다. 정말 간단합니다.let alertDialog = UIAlertController(title: "Alert Dialog 제목", message: "Alert Dialog 내용", preferredStyle: UIAlertControllerStyle.alert) alertDialog.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action: UIAlertAction!) in ..