I cannot hide the UITableView footer (i.e. set its height to 0 and animate the transition).
I tried to wrap tableView.tableViewFooter.height = 0 (and tableView.tableViewFooter = nil ) between [tableView beginUpdates] and [tableView endUpdates] , but it does not work.
The implementation of the method below creates another footer.
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { return 50; }

Is there a difference between a table footer and a section footer? I created my own by clicking a button under my desk in my storyboard.
Any ideas to make this simple?
ios objective-c cocoa-touch uikit uitableview
user3250560
source share