I\'ve been experimenting with UITextField and how to work with it\'s cursor position. I\'ve found a number of relation Objective-C answers, as in
UITextField
For set cursor position at your point:
textView.beginFloatingCursor(at: CGPoint(x: 10.0, y: 10.0))
For reset cursor position:
textView.endFloatingCursor()
Note: This example works in both Textview & Textfield.