How to change the size of blinking bar/line for specific UITextField?

天大地大妈咪最大 提交于 2020-01-21 08:49:26

问题



i'm working on a project(Swift4,Xcode 9.2) which has a feature to get text input and the blinking bar/line should be of big size (it should be Square instead of bar/line), so i placed a UITextField for Text but i don't understand how to change the size of that blinking line/bar.

So, is it possible to change the size of line/bar? and if Yes then how to do it? i know how to change the color of that line/bar but this is something different.


回答1:


You can change the size by overriding the frame method for cursor as follows,

class CustomTextField: UITextField {

    override func caretRect(for position: UITextPosition) -> CGRect {
        var rect = super.caretRect(for: position)
        let size = CGSize(width: 10, height: 50)
        // Calculating center y
        let y = rect.origin.y - (size.height - rect.size.height)/2
        rect = CGRect(origin: CGPoint(x: rect.origin.x, y: y), size: size)
        return rect
    }
}

Set CustomTextField class in xib/storyboard identity inspector for that textField.




回答2:


We can't change the cursor height, but we can do some trick, select your textfield and change your textfield border style as UITextBorderStyleNone

Check the below link which is already given answer

there after increase the font size of your textfield whatever you want, then you get the output as



来源:https://stackoverflow.com/questions/49974162/how-to-change-the-size-of-blinking-bar-line-for-specific-uitextfield

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!