Skip to content

Instantly share code, notes, and snippets.

@psobko
Created November 5, 2013 18:21
Show Gist options
  • Save psobko/7323590 to your computer and use it in GitHub Desktop.
Save psobko/7323590 to your computer and use it in GitHub Desktop.
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UITableViewHeaderFooterView *headerView = [[UITableViewHeaderFooterView alloc] init];
[headerView.contentView addSubview:self.someView];
return headerView;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return CGRectGetHeight(self.someView.frame); //play around with this value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment