美文网首页
IOS TableView去掉最后一个cell分割线简单方法

IOS TableView去掉最后一个cell分割线简单方法

作者: croire_cfg | 来源:发表于2017-03-26 09:23 被阅读0次

    UIView * bottomLine = [[UIView alloc]initWithFrame:CGRectMake(0,self.contentSize.height-1, kScreenWidth, 2)];

    [self addSubview:bottomLine];

    bottomLine.backgroundColor = [UIColor whiteColor];

    非常简单的办法,在tableView最后一个cell的位置添加一个白色的视图即可

    相关文章

      网友评论

          本文标题:IOS TableView去掉最后一个cell分割线简单方法

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