shouldChangeText(in:replacementText:)
Asks whether to replace the text in the specified range.
Declaration
optional func shouldChangeText(in range: UITextRange, replacementText text: String) -> BoolParameters
- range:
A range of text in a document.
- text:
The proposed text to replace the text in
range.
Return Value
true if the text should be changed or false if it should not.
Discussion
Prior to replacing text, this method is called to give your delegate a chance to accept or reject the edits. If you do not implement this method, the return value defaults to true.