兴趣iOS

UITableView 分割线设置、去掉空cell

2016-12-12  本文已影响65人  沧海的风

在ios7以后,UITableViewCell左侧会有默认15像素的空白,有时候我们要求cell的分割线从边界开始,就需要重新设置分割线。

去掉多余cell

[tableView setTableFooterView:[UIView new]];

去掉section在tableview中的黏性
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
CGFloat sectionHeaderHeight = 30;
if (scrollView.contentOffset.y <= sectionHeaderHeight && scrollView.contentOffset.y >= 0) {
scrollView.contentInset = UIEdgeInsetsMake(- scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y >= sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(- sectionHeaderHeight, 0, 0, 0);
}
}

上一篇 下一篇

猜你喜欢

热点阅读