In my iPhone app, I placed textField and TextView as I grouped them with scrollview
Now the problem is when I call
[textField becomeBecomeFirstResponder]
it sets focus to textField in scrollView and makes the content area visible in scrollView respectively
But when I do the same with UItextView:
[textView becomeBecomeFirstResponder]
it does not make the TextView visible in scroll mode, that is, it does not focus on textView (sets of cursors in text form, but the content area of ββthe scrollview dose is not displayed with manual scrolling)
What am I doing to focus on textView and adjust the content area accordingly in scrollview?
source share