iOS ● 去掉UITableViewCell中多余的线

方法 :

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

或 :

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


正常情况下的样子:

iOS ● 去掉UITableViewCell中多余的线_第1张图片

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

iOS ● 去掉UITableViewCell中多余的线_第2张图片

你可能感兴趣的:(iOS ● 去掉UITableViewCell中多余的线)