FormTextField
FormTextField copied to clipboard
Chinese character input issue
I want to limit the length of characters in the input box. My main code is as follows. However, when inputting Chinese characters, only the first character can be input into Chinese. There is no way to input Chinese later. I tried to record a video. Can you tell me what the problem is? System Ver. iOS 13
var validation = Validation()
validation.minimumLength = minLength
validation.maximumLength = maxLength
titleTextField.inputValidator = InputValidator(validation: validation)
Hi @ladmini, I'm sorry for the late response. I haven't faced your problem before but only thing I can imagine is that the InputValidator makes too many assumptions regarding the locale or the alphabet being used. One way would be to expand it to inject the used one.