I have a UIViewController that contains a UITableView with custom cells, inside the cell are UILabels, a couple of uneditable UI
UIViewController
UITableView
UILabels
UI
Two solutions:
Preferred: use a UITableViewController instead of a UIViewController as that one will automatically make sure that your keypad won't hide the editable field.
Hacky: How to make a UITextField move up when keyboard is present?