我正在尝试删除tableview中的一行。删除行时,应调整tableview,以便tableview中没有空行。这是删除任何行之前的样子:
这就是要删除行时的样子:
这是删除行后的样子:
删除第四行后不应该有额外的空白行。我如何摆脱这一额外的行?
这是我目前的代码。如您所见,tableview的大小是动态调整的。根据是否有4个项目(如第一个图像中所示)或是否有6个项目,tableview的总大小是不同的。在这两种情况下,在发生任何删除之前,表中没有额外的行(因此在第一种情况下总共只有4行,在第二种情况下总共只有6行)。此外,按钮应该在tableview的结尾下方80像素。删除行时,按钮会正确移动,因为您可以看到按钮已从图像2向上移动到3个。但是,它仍然看起来在tableview中有一个额外的行。
@IBOutlet var tableView: UITableView!
@IBOutlet var newButton: UIButton!
var items: [String] = ["Swift", "Is", "So", "Amazing"]
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.items.count;
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell:UITableViewCell = self.tableView.dequeueReusableCell(withIdentifier: "Cell") as! UITableViewCell
// Make sure the table view cell separator spans the whole width
cell.preservesSuperviewLayoutMargins = false
cell.separatorInset = UIEdgeInsets.zero
cell.layoutMargins = UIEdgeInsets.zero
cell.textLabel?.text = self.items[indexPath.row]
return cell
}
override func viewWillAppear(_ animated: Bool) {
// Adjust the height of the tableview
tableView.frame = CGRect(x: tableView.frame.origin.x, y: tableView.frame.origin.y, width: tableView.frame.size.width, height: tableView.contentSize.height)
// Add a border to the tableView
tableView.layer.borderWidth = 1
tableView.layer.borderColor = UIColor.black.cgColor
}
// This function is used for adjusting the height of the tableview
override func viewDidLayoutSubviews(){
tableView.frame = CGRect(x: tableView.frame.origin.x, y: tableView.frame.origin.y, width: tableView.frame.size.width, height: tableView.contentSize.height)
tableView.reloadData()
//Get the current height of the tableview
var tableViewHeight = self.tableView.contentSize.height
var tableViewEnding = 134 + tableViewHeight
var buttonPlacement = tableViewEnding + 80
// The New Button is 80 points below the ending of the tableView
newButton.frame.origin.y = buttonPlacement
print("Table View Height: \(tableViewHeight)")
}
// Allow cell deletion in tableview
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let delete = UITableViewRowAction(style: .destructive, title: "Delete") { (action, indexPath) in
// delete item at indexPath
self.items.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .fade)
self.viewDidLayoutSubviews()
print(self.items)
print("Number of rows: \(tableView.numberOfRows(inSection: 0))")
}
delete.backgroundColor = UIColor.blue
return [delete]
}
答案 0 :(得分:0)
只需添加以下视图中的加载方法
即可@Entity
public class MyEntity {
private String name;
private Integer deprecated_col;
public String getName() {
return name;
}
// deprecated_col has no accessor
}
现在不会有额外的空行。
下一步是
将高度约束添加到tableview并获取它的IBOutlet。
在使用tableview' s tableView.tableFooterView = UIView()
注意:如果您的单元格有一些繁重的任务要做,那么在重新加载数据旁边设置常量可能无法正常工作在这种情况下您可以尝试viewDidLayoutSubviews methdo
希望它有用