So I try to add a footer to my table. And below is what I did, but the view doesn't go to the bottom of the app, instead, it will stay under the last TableCell. So how can I make it my footer for my page?

So I try to add a footer to my table. And below is what I did, but the view doesn't go to the bottom of the app, instead, it will stay under the last TableCell. So how can I make it my footer for my page?

For Footer in tableView Simply drag a UIView after the UITableViewCell.
For Header drag and drop a UIView into the header part.
TableView default taken it as a header View and footer
Connect an IBoutlet to the view and return the view in the delegate method.
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
return yourView;
}