美文网首页
UITableView去除多余横线

UITableView去除多余横线

作者: 上发条的树 | 来源:发表于2016-08-11 17:07 被阅读1242次

    方法一,简单粗暴一句话:
    这样:

    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
    

    或者这样:

    self.tableView.tableFooterView = [UIView new];
    

    方式二:

    -(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
        UIView *footView = [[UIView alloc]init];
        return footView;
    }
    

    方法三,去除横线,自定义cell,每个cell底部添加一条横线:

    去除横线:

    self.tableView.separatorStyle = UITableViewCellAccessoryNone;
    

    而后cell加上横线。

    相关文章

      网友评论

          本文标题:UITableView去除多余横线

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