Skip to content

Instantly share code, notes, and snippets.

@majie1993
Created December 26, 2014 04:12
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 majie1993/89b09628bd234c48442f to your computer and use it in GitHub Desktop.
Save majie1993/89b09628bd234c48442f to your computer and use it in GitHub Desktop.
Delete blank cell in the foot of UITableView
- (void)setExtraCellLineHidden: (UITableView *)tableView
{
UIView *view =[ [UIView alloc]init];
view.backgroundColor = [UIColor clearColor];
[tableView setTableFooterView:view];
[tableView setTableHeaderView:view];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment