美文网首页
iOS 清除UITableView的分割线

iOS 清除UITableView的分割线

作者: Accepted_ | 来源:发表于2017-03-11 11:52 被阅读0次

    在设置了

    _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    之后,滚动的时候还是能看到分割线.

    可以查看你的实现的heightForHeaderInSection和heightForFooterInSection返回值是否不为0.返回值置为0,分割线就不见了.

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

    {

            return 0;

    }

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

    {

            return 0;

    }

    相关文章

      网友评论

          本文标题:iOS 清除UITableView的分割线

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