首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

限制中文输入长度

限制中文输入长度

let toBeString = textView.text
let lang = textView.textInputMode?.primaryLanguage
if lang == "zh-Hans" {
   let selectedRange = textView.markedTextRange
   if selectedRange == nil && (toBeString?.characters.count)! > 50{
          let index = toBeString?.index((toBeString?.startIndex)!, offsetBy: 50)
          textView.text = toBeString?.substring(to:index!)
    }
}else if (toBeString?.characters.count)! > 50  {
       let index = toBeString?.index((toBeString?.startIndex)!, offsetBy: 50)
       textView.text = toBeString?.substring(to:index!)
}
返回列表