Skip to main content

Table View - Extra Rows

To remove the default extra rows in the table view, use the below code in table view controller:


tableView.edgesForExtendedLayout = UIRectEdgeNone;

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

Comments