在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
textfield : func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { let fullStr = (textField.text! as NSString).replacingCharacters(in: range, with: string) delegate?.changeTextFieldText(tfTag: textField.tag, text: fullStr) return true }
textview : 一样 func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { let fullStr = (textField.text! as NSString).replacingCharacters(in: range, with: string) return true }
|
请发表评论