I\'d like to be able to fix the position of certain rows in a UITableView as the user scrolls.
Specifically, I have a table whereby certain rows are \"headers\" for
That's the default behavior for section headers in plain UITableView
instances.
If you want to create a custom header, implement the tableView:viewForHeaderInSection:
method in your table view delegate and return the view for your header.
Although you will have to manage sections and rows instead of just rows.