UITextField를 이용하여 사용자 입력을 받아올 때, 글자수 입력을 제한하는 법을 알아보자. 글자수 입력 제한하기 애플 문서를 찾아보면 textField(_:shouldChangeCharactersIn:replacementString:) : Asks the delegate whether to change the specified text. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool textField의 텍스트와 새로 입력받은 string을 합쳐서 길이를 제한하는 메서드로, 결과값으로 Bool을 리턴하여 텍스트를 바꿀지 말지 ..