shouldChangeCharactersIn结合建议的文字

时间:2018-09-01 20:22:20

标签: ios swift uitextfield

我有一个UITextField,并且正在使用委托方法func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool

此处的字段可以显示建议的文字(例如名称)。问题出在建议被接受时和用户键入单个字母时。如果采纳了建议(例如Tom),则委托方法将触发,但是string仅包含空格“”。这会导致验证失败,因为假定现实中他们选择一个完整的单词时,用户会在空白区域中键入内容。

我们如何使用shouldChangeCharactersIn检查文本输入,但仍然允许使用建议的文本?

1 个答案:

答案 0 :(得分:0)

如果用户使用建议,则shouldChangeCharactersIn最多触发两次:第一次使用单个空格。然后,如果该方法返回false,则不会发生其他情况。但是,如果该方法返回true,则shouldChangeCharactersIn会在其末尾使用建议的字符串+空格触发更多的事件。因此,如果要使用键盘建议,则必须允许空格,并且(如果需要)以后根据需要以某种方式将其删除。一种方法是像这样使用defer(未经测试,但可以给您一个想法):

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  if string == " " {
    defer {
      if let text = textField.text, let textRange = Range(range, in: text) {
    textField.text = text.replacingCharacters(in: textRange, with: "")
      }
    }
    return true
  }

  // rest of the code for input filtering

  return false
}