Reputation: 11700
Is it possible to have sticky header/footer sections for a UITableView
that is grouped?
If not, is there an alternative way of achieving this?
Upvotes: 2
Views: 1861
Reputation: 65389
This is not possible out of the box.
You'll have to create your own UITableViewController by subclassing a UIViewController.
This answer provides some advice on a sticky footer.. for a sticky header and footer you'll need to:
Now the footer and header view are not part of the UITableView and won't scroll.
Upvotes: 1