flashlib
9/30/2013 - 7:44 AM

其实就是设置个透明的footerView,有了footerView之后,就不会显示空白的cell;

其实就是设置个透明的footerView,有了footerView之后,就不会显示空白的cell;

 - (void)setExtraCellLineHidden: (UITableView *)tableView
{
    UIView *view =[ [UIView alloc]init];
    view.backgroundColor = [UIColor clearColor];
    [tableView setTableFooterView:view];
    [view release];
}