gpt4 book ai didi

ios - 限制几个文本字段的长度

转载 作者:行者123 更新时间:2023-11-28 15:29:03 26 4
gpt4 key购买 nike

我在一个 View Controller 中有多个文本字段,我正在使用以下函数来限制字符数:

func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
return textView.text.characters.count + (text.characters.count - range.length) <= 300
}

如何更改不同文本字段的最大字符数?我需要另一个文本字段的下限。

最佳答案

对于 TextView,您需要使用以下 TextView 委托(delegate)方法

func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool
{
if textView == yourTextViewName
{
let str = (NSString(string: textView.text!)).replacingCharacters(in: range, with: text)
if str.characters.count <= 300 {
return true
}
textView.text = str.substring(to: str.index(str.startIndex, offsetBy: 300))
return false
}
return true
}

对于 TextField,您必须使用以下委托(delegate)方法

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
{
if textField == yourTextFieldName {
let str = (NSString(string: textField.text!)).replacingCharacters(in: range, with: string)
if str.characters.count <= 300 {
return true
}
textField.text = str.substring(to: str.index(str.startIndex, offsetBy: 300))
return false
}
return true
}

希望对你有帮助

关于ios - 限制几个文本字段的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44916292/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com