I have a UITextField
and UITextView
in a view.
The scenario is like this:
textFieldShouldReturn
: method of theUITextField
makesUITextView
thefirstResponder
And now the problem is , every time my textView becomes the first responder the contentSize
of the UITextView
increases(ie,every time the cursor moves to a new line)..
Is there any way that the textView's contentsize
remains the same???
Thanxx in advance..