如何计算swift中UITextField中的字符数?

时间:2014-09-03 09:34:58

标签: ios swift uitextfield ios8 uitextfielddelegate

在我的代码中,我使用其中一个UITextFieldDelegate方法来检测文本字段何时被删除,以便我可以检查并提醒用户。

第一项检查是他们在文本字段中输入的字符数量。

这是我的代码:

override func textFieldDidEndEditing(textField: UITextField!) {
    if textField == self.signUpView.usernameField {
        if textField.text.length // this doesn't work
    }

    if textField == self.signUpView.passwordField {

    }

    if textField == self.signUpView.emailField {

    }

}

这是如何在swift中完成的?

0 个答案:

没有答案