编辑
移除UITableView的头部和尾部空白
本文访问次数:0

UITableView默认头部和尾部包含一定的空白区域,通过以下代码可以删除空白区域

- (void)viewDidLoad {
    ...
    self.edgesForExtendedLayout = UIRectEdgeNone;
    self.automaticallyAdjustsScrollViewInsets = false;
    ...
}
...
#pragma mark UITableViewDataSource
- (CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section {
    return CGFLOAT_MIN;
}
- (CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section {
    return CGFLOAT_MIN;
}

需要输入验证码才能留言

没有任何评论