始终显示光标UITextField

时间:2016-08-20 23:38:53

标签: ios swift uitextfield

我正在尝试创建一个UITextField,无论键盘是否显示,它都会始终显示闪烁的光标。

有什么办法可以达到这个效果吗?

1 个答案:

答案 0 :(得分:0)

@ andreamazz在Swift中回答。

UITextField show cursor even when userInteractionEnabled is set to NO

UIView.animateWithDuration(1, delay: 0, options: .Repeat, animations: {() -> Void in
cursorView.alpha = 0 }, completion: {(animated: Bool) -> Void in
cursorView.alpha = 1
})