Textview not able to move up when begin editing
- by Jason lau
I am having problem moving up my UITextview at the bottom.
The UITextField is working properly but the UITextView is not working.
Here is my code when press the TextView it pop up the toolbar. Please help
- (IBAction)HideKeyboard:(id)sender {
[self.myTextField resignFirstResponder];
[self.myTextView resignFirstResponder];
[self.myScrollView setContentOffset:CGPointZero animated:YES];
}