去除多余的cell 和最后一行cell显示顶头底线

  1. 去除多余cell
  2. YourTableview.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  3. 最后一行cell底线顶头显示
  4. static void setLastCellSeperatorToLeft(UITableViewCell* cell)

    {

    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {

    [cell setSeparatorInset:UIEdgeInsetsZero];

    }

    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

    [cell setLayoutMargins:UIEdgeInsetsZero];

    }

    if([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]){

    [cell setPreservesSuperviewLayoutMargins:NO];

    }

    }

上一篇:[笔记]一个测试浏览器对html5支持的网站


下一篇:编写Android.mk中的LOCAL_SRC_FILES的终极技巧(转)