In my app, when I click on a text field, the keyboard hides it. Please help me — how can I move my view up when I click on the text field. I’m using this code in textFieldDidBeginEditing:
self.tableView.scrollIndicatorInsets = UIEdgeInsetsMake(0, 0, 216, 0);
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 216, 0);
but it doesn’t work.
You can do the following, but first make sure you’ve set the UITextField delegate to your self and
at the top. This is how far you want the view to be shifted