I have a UITextField
in a table view on a UIViewController
(not a UITableViewController
).
If the table view is on a UITableViewC
Another simple solution is adding an additional space for the footer of the last table section:
- (float)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
if (section == lastSection) {
return keyboard height;
}
return 0;
}
We can add our icon into this area as well. :)