Skip to content

Instantly share code, notes, and snippets.

@aug2uag
Created July 19, 2014 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aug2uag/316f49755bbad689f598 to your computer and use it in GitHub Desktop.
Save aug2uag/316f49755bbad689f598 to your computer and use it in GitHub Desktop.
UITableView remove additional separators
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
return 0.01f;
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
return [UIView new];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment