오늘은 Alert에 TextField를 추가하는 방법을 알아보려고 한다.생각보다 아주 간단하다Alert에 TextField를 추가하기 전 Alert을 생성하는 방법에 대해 알아보자 https://developer.apple.com/documentation/uikit/uialertcontroller UIAlertController | Apple Developer DocumentationAn object that displays an alert message.developer.apple.com 우리가 아는 알림을 띄우는 컨트롤러이다 Alert 생성하기가장 기본적인 확인 버튼, 취소 버튼으로 구성된 Alert을 생성해보겠다 @objc private func createAlert() { l..