iOS之tableview隐藏最下边多余的cell

 //在viewDidLoad 方法中
 //隐藏多余cell
    self.tableView.tableFooterView = [[UIView alloc] init];

如果不设tableview为分组模式可以用该方法去除tableview下边多余的cell

你可能感兴趣的:(iOS之tableview隐藏最下边多余的cell)