Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EvgenyMorozov/a8977eae4b4720fa445d to your computer and use it in GitHub Desktop.
Save EvgenyMorozov/a8977eae4b4720fa445d to your computer and use it in GitHub Desktop.
CustomHeaderViewWithAutoLayout *customHeaderView = [[CustomHeaderViewWithAutoLayout alloc] init];
CGFloat fittingSize = [customHeaderView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
CGRect fittingFrame = customHeaderView.frame;
fittingFrame.size = fittingSize;
customHeaderView.frame = fittingFrame;
tableView.tableHeaderView = customHeaderView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment