勿绮语
勿绮语

Reputation: 9320

Fixed table footer

tableFooterView of a UITableView scrolls with the table, can I make it stay?

Upvotes: 1

Views: 494

Answers (2)

Dave DeLong
Dave DeLong

Reputation: 243146

Alternatively, if your tableView only has a single section, you could return that view as the -tableView:viewForFooterInSection:.

Upvotes: 0

Sanjay Chaudhry
Sanjay Chaudhry

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

Related Questions