Skip to content

Instantly share code, notes, and snippets.

@ranmyfriend
Created May 19, 2015 08:06
Show Gist options
  • Save ranmyfriend/8d22cf91dc73c929faca to your computer and use it in GitHub Desktop.
Save ranmyfriend/8d22cf91dc73c929faca to your computer and use it in GitHub Desktop.
Hide the TableView Empty Rows
- (void)pr_hideEmptySeparators {
UIView *emptyView = [[UIView alloc] initWithFrame:CGRectZero];
emptyView.backgroundColor = [UIColor clearColor];
[self.tableView setTableFooterView:emptyView];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment