美文网首页PS业余学习
iOS ● 去掉UITableViewCell中多余的线

iOS ● 去掉UITableViewCell中多余的线

作者: MyiOS | 来源:发表于2016-07-26 10:12 被阅读83次

    方法 :

    self.myTableView.tableFooterView = [[UIView alloc]init];

    或 :

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


    正常情况下的样子:

    去掉多余的线以后的样子:

    相关文章

      网友评论

        本文标题:iOS ● 去掉UITableViewCell中多余的线

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