TextView限制字数
2017-02-07 本文已影响32人
不是谁的李逍遥
之前写的一直有点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个字")
}
}