TextView限制字数

之前写的一直有点bug终于找到一个没问题的了

func textViewDidChange(_ textView: UITextView) {
        let contentStr = textView.text
        print("字符个数-->",textView.text.characters.count)
        if textView.text.characters.count >= 100{
            textView.text = contentStr![0..<(100-1)]
            self.view.showMbProgressHUD(message: "最多输入100个字")
        }
    }

你可能感兴趣的:(TextView限制字数)