Asks the delegate if the specified text should be changed.
대리자에게 물어봐라/ 지정된 텍스트를 변경해야 하는지
optional func textField(_ textField: UITextField,
shouldChangeCharactersIn range: NSRange,
replacementString string: String) -> Bool
textField
The text field containing the text.
range
The range of characters to be replaced.
string
The replacement string for the specified range. During typing, this parameter normally contains only the single new character that was typed, but it may contain more characters if the user is pasting text. When the user deletes one or more characters, the replacement string is empty.
대체 문자열/ 지정된 범위에서/ 타이핑하는동안, 이러한 파라미터는 일반적으로 포함한다./ 오직 한가지 새로운 문자만을/ 타이핑된/ 하지만 이것은 아마 좀 더 많은 문자를 포함할 것이다/ 만약 사용자가 복사붙여넣기를 한다면/ 사용자가 하나 또는 하나이상의 문자를 지울 때/ 대체 문자열은 비어있을 것이다.
true if the specified text range should be replaced; otherwise, false to keep the old text.
만약 지정된 텍스트 범위가 교체되어야 한다면 true
아니면 이전의 텍스트를 유지할거면 false
The text field calls this method whenever user actions cause its text to change. Use this method to validate text as it is typed by the user. For example, you could use this method to prevent the user from entering anything but numerical values.
텍스트 필드는 호출한다/ 이 메소드를/ 사용자가 텍스트를 바꾸는 동작을 할 때마다/ 사용해라/ 이 메소드를 텍스트의 유효성을 검증하기위해/ 사용자로부터 타이핑된/ 예를들어, 이 메소드를 막기위해 쓸 수 있다/ 사용자가 아무거나 입력하는 것을/ 숫자를 제외한