0
ユーザーが正しい文字を格納する以下のコードに問題があります。ユーザーが「そこに」入力すると「ther」が格納されます。UITextFieldのユーザー入力データを文字列変数に格納
func textField(_ textField: UITextField,
shouldChangeCharactersIn range: NSRange,
replacementString string: String)
-> Bool
{
let text: String = nameInputText.text!
//print(text) //this prints My text
model.validateName(nametext: text)
print(text)
return true
}
私も私のキーボードの隠蔽のためにこれらの機能を持っている:
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
self.view.endEditing(true)
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
nameInputText.resignFirstResponder()
return (true)
}
Checkout [this](https://stackoverflow.com/questions/28394933/how-do-i-check-when-a-uitextfield-changes)post。 –
これをクリックしてストーリーボードからドラッグする必要がありますか? – jean