我正在尝试创建一个UITextField,无论键盘是否显示,它都会始终显示闪烁的光标。
有什么办法可以达到这个效果吗?
答案 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
})