标签:
1.UITableView去除空的cell,多余不用的
在viewdidload方法里加上这一句即可
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
self.tableView.tableFooterView = [[UIView alloc] init];
self.tableView.tableFooterView = [UIView new];
标签:
原文地址:http://www.cnblogs.com/bugismyalllife/p/4884283.html