tableview

1、tableview空白处有多余的分割线

historyTableView.tableFooterView= [[UIView alloc]init];


2、隐藏grouped上边多余的空格

CGRect frame = CGRectMake(0,0,0,0.0000025);

tableView.tableHeaderView= [[UIViewalloc]initWithFrame:frame];

当HeaderView的高度设置为0时,是起不到效果的


你可能感兴趣的:(tableview)