I have a UITableView
which I am able to add a header view to fairly easily. Many apps (like Facebook, for viewing events) have a headerView that when you pull d
There is 2 ways you can set the table header:
Using the .tableHeaderView
property directly (this header scrolls with the table)
Overriding the - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
function (this header stays static with the section)
By the sounds of it you should use the 2nd method instead of using the .tableHeaderView
property