有时候我们处理textFeild时候并不需要长按功能
// 长按不显示菜单栏
super.canPerformAction(action, withSender: sender)
UIMenuController.shared.isMenuVisible = false
给textFeild添加自定义视图 例如:
textFeild.rightView = customButton
限定中文的正则表达式
// 中文字符的正则表达式(包含繁体中文)
^[\u4E00-\u9FA5]+$
中文字符集合
let wordRange = NSRange(location: 0x4e00, length: (0x9fa5 - 0x4e00))
数组转字符串
string.components(separatedBy: (cs as CharacterSet)).joined(separator: "")
网友评论