I have a grouped UITableView and I\'d like to add a UIButton to the very bottom of my UITableView. I\'m using Storyboard and a UITableViewControlle
grouped UITableView
UITableView
There is one way to add views to the bottom of UITableViewController without using a UIViewController subclass.
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, footerY, footerWidth, footerHeight)]; [self.navigationController.view addSubview:footerView];
Hope this help!