I’m working on an app that is in landscape view. I’m using a few UITextFields that when double tapped it will give you the ability to edit the TextFields. My question is how do I get the screen to scroll so the user can edit entire screen while the keypad is shown?
Share
Using
contentInsetandscrollRectToVisiblehas served me well. The code below insets the scroll view so it is not covered by the keyboard, and then scrolls the content to display the the text field.