Reputation: 9320
tableFooterView of a UITableView scrolls with the table, can I make it stay?
Upvotes: 1
Views: 494
Reputation: 243146
Alternatively, if your tableView only has a single section, you could return that view as the -tableView:viewForFooterInSection:
.
Upvotes: 0
Reputation: 3181
Just put the footer as a separate UIView (or whatever) under the table. You don't have to override UITableView at all.
Upvotes: 1