That is a delegate method, you don't call it directly. The text view itself calls it on its delegate.
As a delegate you implement that method to return YES or NO depending on your own program logic and if that text view can become editable.
IF you are just wanting to tell a textview to grab focus so that keyboard input will go into it and have the blinking cursor, you should call -becomeFirstResponder on your textview from some controller.