Skip to content

Instantly share code, notes, and snippets.

@flashlib
Created September 30, 2013 07:48
Show Gist options
  • Save flashlib/6760559 to your computer and use it in GitHub Desktop.
Save flashlib/6760559 to your computer and use it in GitHub Desktop.
其实就是设置一个透明的footerView,这样空的cell就不会显示出来。
- (void)setExtraCellLineHidden: (UITableView *)tableView
{
UIView *view =[ [UIView alloc]init];
view.backgroundColor = [UIColor clearColor];
[tableView setTableFooterView:view];
[view release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment