dd( + ) 버튼을 눌렀을때 알럿 텍스트 필드 뜨게 설정하기 위해 액션으로 연결해준다. addButtonTapped 함수 안에 알럿을 추가한다. @IBAction func addButtonTapped(_ sender: UIBarButtonItem) { let alert = UIAlertController(title: "새로운 메모 추가하기 ", message: "새로운 메모를 추가 하시겠습니까?", preferredStyle: .alert) let success = UIAlertAction(title: "확인", style: .default) { action in print("확인버튼이 눌렸습니다.") } let cancel = UIAlertAction(title: "취소", style: .cancel..