ios – 限制UITextField中的字符数[复制]

参见英文答案 > Set the maximum character length of a UITextField41个
我已经看到了很多答案,但似乎没有一个有效.
我有一个以编程方式创建的带有两个UITextField的UIAlertView.
我想限制字符数:

一个字段中> 12个字符
第二个字段中> 1个字符

一个字段代码

alertDialog.addTextField { (nameField) in
        nameField.placeholder = "Name"
        nameField.borderStyle = .roundedRect
        nameField.clearButtonMode = .whileEditing
        }

第二

alertDialog.addTextField { (keyField) in
        keyField.placeholder = "Key"
        keyField.borderStyle = .roundedRect
        keyField.clearButtonMode = .whileEditing

    }

如何正确限制数字(让我们假装这些字段中没有粘贴)

解决方法

将textField委托设置为相应的类(在我的情况下,self是ViewController)
nameField.delegate = self
keyField.delegate = self

然后你可以限制字符

extension ViewController : UITextFieldDelegate {

    func textField(_ textField: UITextField,shouldChangeCharactersIn range: NSRange,replacementString string: String) -> Bool {

        switch textField {
        case nameField:
            if ((textField.text?.length)! + (string.length - range.length)) > 12 {
                return false
            }

        case keyField:
            if ((textField.text?.length)! + (string.length - range.length)) > 1 {
                return false
            }
        }
        return true 
    }
}

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...