iOS-tableView横线到顶端

作者: cb6a1e2768d1 | 来源:发表于2015-12-14 09:50 被阅读457次
//// 让分割线顶到头

-(void)viewDidLayoutSubviews
{
     [super viewDidLayoutSubviews];
    if ([self.listTableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [self.listTableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
    }
    
    if ([self.listTableView respondsToSelector:@selector(setLayoutMargins:)]) {
        [self.listTableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
    }
 

}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}

相关文章

  • iOS-tableView横线到顶端

  • tableView横线到顶端

    //// 让分割线顶到头 -(void)viewDidLayoutSubviews{ [superviewDi...

  • 去除tabbar顶部的横线

    在使用tabbar的时候系统会自动的在顶端添加一条横线,项目中需要去除可以将tabar的shadowImage设置...

  • 需要学习的集合

    ios-tableView到顶禁止下拉,允许上滑 - 简书[https://www.baidu.com/link?...

  • 定位到页面顶端

    onUpdate used to scroll to top of the page

  • 2019-11-07-0002:

    1: //横线到最左边1 if ([ self.tableView respondsToSelector:@...

  • 横线

    在艺术的线条之中有许多优雅的线条,它们装饰着这个世界的美。那交错的线条诉说着历史的故事,你是否看出他们的内在深邃....

  • 横线

    把飞雪化作泥土, 拥入根际, 时光的灵体可以安抵, 列车的奔波在国度尽头。 一见秋收冬藏的归途, 浸漫染水流的无际...

  • JQuery监听页面滚动事件

    1、当前滚动的地方的窗口顶端到整个页面顶端的距离:var scrollTop = $(window).scroll...

  • JQuery监听页面滚动总结

    1、当前滚动的地方的窗口顶端到整个页面顶端的距离:var winPos = $(window).scrollTop...

网友评论

    本文标题:iOS-tableView横线到顶端

    本文链接:https://www.haomeiwen.com/subject/yskuhttx.html