如何使用UITableViewStyle UITableViewStyleGrouped 0在我的tableView的各部分之间填充页脚填充?

时间:2016-11-07 09:38:17

标签: ios objective-c uitableview

  - (void)viewDidLoad {
    [super viewDidLoad];
    self.tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped];
    self.tableView.dataSource = self;
    self.tableView.delegate   = self;
}


- (CGFloat )tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 50;
}

- (CGFloat )tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 0;
}

dataSource每个部分返回3个部分和2个部分,每个部分之间有一个40Px的填充,我想使填充为零;

1 个答案:

答案 0 :(得分:0)

试试这个:

- (UIView*)tableView:(UITableView*)tableView 
           viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc] initWithFrame:CGRectZero];
}