美文网首页
tableview底部线条去除

tableview底部线条去除

作者: Cyan_Queen | 来源:发表于2017-12-16 14:45 被阅读0次

    //tableview底部线条去除

    UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREENWIDTH, 0.1)];

    footer.backgroundColor = [UIColor whiteColor];

    self.tableView.tableFooterView = footer;

    相关文章

      网友评论

          本文标题:tableview底部线条去除

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