UITextField光标

作者: 演繹陌路人生 | 来源:发表于2021-09-09 15:27 被阅读0次
    1. 开始编辑时将光标移动到最后
    func textFieldDidBeginEditing(_ textField: UITextField) {
            textField.tintColor = .clear
            CATransaction.begin()
            CATransaction.setCompletionBlock {
                textField.selectedTextRange = textField.textRange(from: textField.endOfDocument, to: textField.endOfDocument)
                textField.tintColor = nil
            }
            CATransaction.commit()
        }
    

    相关文章

      网友评论

        本文标题:UITextField光标

        本文链接:https://www.haomeiwen.com/subject/zdniwltx.html